/* ========================================
   ALW Eletromotores — Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;900&family=Barlow+Condensed:wght@700;900&display=swap');

:root {
  --bg: #080808;
  --bg-card: #111111;
  --bg-surface: #0a0a0a;
  --blue: #0099FF;
  --blue-dark: #0077CC;
  --blue-glow: rgba(0,153,255,0.3);
  --gold: #D97706;
  --green: #22C55E;
  --text: #F8FAFC;
  --text-muted: #9CA3AF;
  --border: rgba(0,153,255,0.2);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 24px;
  --font: 'Barlow', system-ui, -apple-system, sans-serif;
  --font-display: 'Barlow Condensed', 'Barlow', sans-serif;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--text); }
img { max-width: 100%; height: auto; display: block; }

/* ── TOPBAR ── */
.topbar {
  background: #000;
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; align-items: center; }
.topbar a { color: var(--text-muted); font-size: 13px; }
.topbar a:hover { color: var(--blue); }
.topbar-sep { color: rgba(255,255,255,0.2); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(5,5,5,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img { height: 48px; width: auto; }
.logo-text { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--blue); letter-spacing: 1px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--text); background: rgba(255,255,255,0.05); }

.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-toggle::after { content: '▾'; font-size: 10px; opacity: 0.6; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}
.dropdown:hover .dropdown-menu, .dropdown-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.dropdown-menu a:last-child { border-bottom: none; }

.btn-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  box-shadow: 0 0 20px var(--blue-glow);
  transition: all var(--transition) !important;
}
.btn-cta:hover { background: var(--blue-dark) !important; box-shadow: 0 0 30px rgba(0,153,255,0.5) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 0; color: var(--text-muted); font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-nav a:hover { color: var(--blue); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 0 24px var(--blue-glow); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 0 36px rgba(0,153,255,0.5); transform: translateY(-2px); color: #fff; }
.btn-secondary { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-secondary:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #B45309; color: #fff; transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,30,60,0.7) 50%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto;
  left: 0; right: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,153,255,0.15);
  border: 1px solid rgba(0,153,255,0.4);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease;
}
.hero h1 span { color: var(--blue); }
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 1.2s ease; }
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--blue); transform: scale(1.3); }

/* ── SECTIONS ── */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-subtitle { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(0,153,255,0.5);
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-4px);
}

/* ── FEATURED CTA ── */
.featured-cta {
  background: linear-gradient(135deg, #001a3a 0%, #002d5a 100%);
  border: 1px solid rgba(0,153,255,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -40px 0 80px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.featured-cta-text { font-size: 16px; font-weight: 600; }
.featured-cta-text span { color: var(--blue); }

/* ── ANTES & DEPOIS ── */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ba-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 20px 12px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.ba-label span { color: var(--blue); display: block; font-size: 14px; margin-bottom: 2px; }

/* ── TECH INFO ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.tech-card:hover { border-color: var(--blue); box-shadow: 0 0 30px var(--blue-glow); transform: translateY(-4px); }
.tech-icon { font-size: 40px; margin-bottom: 12px; }
.tech-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.tech-label { color: var(--text-muted); font-size: 14px; font-weight: 600; }

/* ── LOGO GRID ── */
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.brand-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.brand-chip:hover { border-color: var(--blue); color: var(--text); background: rgba(0,153,255,0.08); }

/* ── VIDEO ── */
.video-section { text-align: center; background: var(--bg-surface); }
.video-wrapper {
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px var(--blue-glow);
  aspect-ratio: 16/9;
}
.video-wrapper iframe { width: 100%; height: 100%; display: block; }

/* ── STATS ── */
.stats-section { background: linear-gradient(135deg, #001a3a 0%, #000d20 100%); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: rgba(0,10,30,0.9);
  padding: 48px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-muted); font-size: 15px; font-weight: 600; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card { position: relative; }
.service-card-img {
  width: 100%; height: 240px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-card-text { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}
.service-link:hover { gap: 10px; }

/* ── MARQUEE ── */
.marquee-section { overflow: hidden; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track.reverse { animation: marquee-reverse 25s linear infinite; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.marquee-item .star { color: var(--gold); animation: pulse 2s infinite; }
.marquee-sep { color: rgba(0,153,255,0.4); font-size: 20px; padding: 0 8px; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card { padding: 28px; }
.review-stars { color: #FBBF24; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 700; font-size: 14px; }
.review-meta { color: var(--text-muted); font-size: 12px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 8px;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(0,153,255,0.5); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,153,255,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── DIFERENCIAIS ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  padding: 32px 24px;
  text-align: center;
}
.diff-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.diff-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.diff-text { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ── SOBRE ── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.sobre-img img { width: 100%; height: 400px; object-fit: cover; }
.sobre-label { color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.sobre-title { font-family: var(--font-display); font-size: 36px; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; line-height: 1.1; }
.sobre-text { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.famac-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,153,255,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
}
.famac-badge img { height: 40px; }
.famac-badge-text { font-size: 13px; color: var(--text-muted); }
.famac-badge-text strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ── CONTATO ── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--blue); background: rgba(0,153,255,0.05); box-shadow: 0 0 0 3px rgba(0,153,255,0.1); }
select.form-control option { background: #1a1a1a; }
textarea.form-control { resize: vertical; min-height: 120px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(0,153,255,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-value { font-size: 15px; font-weight: 600; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; height: 340px; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 40px; }
.footer-tagline { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--blue); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item span:first-child { font-size: 14px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span:last-child { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { color: var(--text-muted); font-size: 13px; }
.footer-dev {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-dev img { height: 20px; }
.footer-dev a { color: var(--text-muted); }
.footer-dev a:hover { color: var(--blue); }
.heart { color: #ef4444; display: inline-block; animation: heartbeat 2s infinite; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22C55E;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(34,197,94,0.5);
  animation: pulse 2s infinite;
  text-decoration: none;
  transition: all var(--transition);
}
.wa-float:hover { background: #16A34A; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(34,197,94,0.6); animation: none; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: rgba(0,153,255,0.2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--blue); color: #fff; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px 0;
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: 0.4; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: linear-gradient(135deg, #000d20 0%, #001a3a 50%, #000d20 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero h1 span { color: var(--blue); }
.page-hero p { color: var(--text-muted); font-size: 16px; max-width: 600px; }

/* ── CHIPS ── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: rgba(0,153,255,0.08);
  border: 1px solid rgba(0,153,255,0.3);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* ── TRANSPORT CARDS ── */
.transport-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.transport-card { padding: 28px 20px; text-align: center; }
.transport-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.transport-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.transport-text { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ── NEIGHBOR GRID ── */
.neighbor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.neighbor-link { color: var(--text-muted); font-size: 13px; padding: 6px 10px; border-radius: 6px; transition: var(--transition); display: block; }
.neighbor-link:hover { color: var(--blue); background: rgba(0,153,255,0.05); }
.zone-title { font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 2px; margin: 24px 0 12px; grid-column: 1/-1; }

/* ── BLOG ── */
.blog-hero { background: var(--bg-surface); padding: 60px 0 40px; }
.article-body { max-width: 800px; margin: 0 auto; }
.article-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; text-transform: uppercase; margin: 40px 0 16px; color: var(--text); }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--blue); }
.article-body p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.article-body ul, .article-body ol { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; padding-left: 24px; }
.article-body ul li, .article-body ol li { margin-bottom: 8px; }
.article-info { display: flex; gap: 20px; color: var(--text-muted); font-size: 13px; margin-bottom: 32px; flex-wrap: wrap; }
.article-info span { display: flex; align-items: center; gap: 6px; }

/* ── SITEMAP / PRIVACY ── */
.sitemap-section { max-width: 900px; margin: 0 auto; }
.sitemap-zone { margin-bottom: 40px; }
.sitemap-zone h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.sitemap-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.sitemap-links a { color: var(--text-muted); font-size: 14px; padding: 4px 0; transition: var(--transition); }
.sitemap-links a:hover { color: var(--blue); }

/* ── SEPARATORS ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.bg-alt { background: var(--bg-surface); }

/* ── ANIMATIONS ── */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tech-grid, .stats-grid, .before-after-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .neighbor-grid { grid-template-columns: repeat(3,1fr); }
  .sitemap-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .tech-grid, .stats-grid, .before-after-grid, .diff-grid, .reviews-grid, .transport-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .featured-cta { flex-direction: column; text-align: center; }
  .neighbor-grid { grid-template-columns: repeat(2,1fr); }
  .sitemap-links { grid-template-columns: 1fr 1fr; }
  .wa-float .wa-text { display: none; }
  .topbar .container { justify-content: center; font-size: 11px; }
}
@media (max-width: 480px) {
  .tech-grid, .stats-grid, .before-after-grid, .diff-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 40px; }
  .transport-grid { grid-template-columns: 1fr; }
  .neighbor-grid { grid-template-columns: repeat(2,1fr); }
}
