/* ======================================================
   E-MOTORS BRASIL - DESIGN SYSTEM
   ====================================================== */

/* -- RESET & BASE ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #0a0f1e;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }
svg { flex-shrink: 0; }
button, input, select, textarea { font-family: inherit; }

/* Global SVG safety - prevent oversized rendering */
.benefit-check svg, .package-check svg, .highlight-icon svg,
.info-visual svg { max-width: 100%; max-height: 100%; }

/* -- SCROLLBAR ------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0f1e; }
::-webkit-scrollbar-thumb { background: #389fbd; border-radius: 3px; }

/* -- UTILITIES ------------------------------------- */
.container { max-width: 1280px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media(min-width:1024px){ .container { padding-left: 2.5rem; padding-right: 2.5rem; } }

/* -- TEXT GRADIENT --------------------------------- */
.text-gradient {
  background: linear-gradient(135deg, #389fbd 0%, #b8e6f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -- GLASSMORPHISM --------------------------------- */
.glass-dark {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(56, 159, 189, 0.15);
}

/* -- BUTTONS --------------------------------------- */
.btn-primary {
  background: linear-gradient(135deg, #389fbd 0%, #2d7a94 100%);
  border: 1px solid rgba(56, 159, 189, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(56, 159, 189, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(56, 159, 189, 0.5);
  color: #389fbd;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.btn-outline:hover {
  background: rgba(56, 159, 189, 0.1);
  border-color: #389fbd;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
}

/* -- SECTION LABEL --------------------------------- */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #389fbd;
}

/* -- STAT NUMBER ----------------------------------- */
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* -- CARD HOVER ------------------------------------ */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 159, 189, 0.4) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(56, 159, 189, 0.08);
}

/* -- SECTION DIVIDER ------------------------------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(56, 159, 189, 0.3) 50%, transparent 100%);
}

/* -- INPUT ------------------------------------------ */
.input-premium {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  outline: none;
}
.input-premium:focus {
  border-color: #389fbd;
  background: rgba(56, 159, 189, 0.05);
  box-shadow: 0 0 0 3px rgba(56, 159, 189, 0.1);
}
.input-premium::placeholder { color: rgba(255, 255, 255, 0.3); }

/* -- SCROLL ANIMATIONS ----------------------------- */
.anim { transition: all 0.7s ease-out; }
.anim.fade-in { opacity: 0; }
.anim.slide-up { opacity: 0; transform: translateY(2rem); }
.anim.slide-left { opacity: 0; transform: translateX(2rem); }
.anim.slide-right { opacity: 0; transform: translateX(-2rem); }
.anim.scale-up { opacity: 0; transform: scale(0.95); }
.anim.visible { opacity: 1 !important; transform: translate(0,0) scale(1) !important; }

/* ======================================================
   HEADER
   ====================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
}
.header.scrolled { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem;
}
.header-logo { height: 2.5rem; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media(min-width:1024px){ .nav-desktop { display: flex; } }

.nav-link {
  position: relative; padding: 0.5rem 0.75rem; font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.7); transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: #389fbd; transition: width 0.3s;
}
.nav-link:hover::after { width: 80%; }
.nav-link.active { color: #389fbd; }
.nav-link.active::after { width: 80%; }

.header-cta { display: none; }
@media(min-width:1024px){ .header-cta { display: flex; align-items: center; } }

.mobile-toggle { display: block; padding: 0.5rem; border-radius: 0.5rem; background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; }
.mobile-toggle:hover { color: #fff; background: rgba(255,255,255,0.1); }
@media(min-width:1024px){ .mobile-toggle { display: none; } }

.mobile-menu {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(10,15,30,0.98); backdrop-filter: blur(20px);
}
@media(min-width:1024px){ .mobile-menu { display: none !important; } }
.mobile-menu.open { max-height: 100vh; opacity: 1; }
.mobile-menu-inner { padding: 1.5rem; }
.mobile-link {
  display: block; padding: 0.75rem 1rem; color: rgba(255,255,255,0.7);
  font-weight: 500; border-radius: 0.5rem; transition: all 0.2s;
}
.mobile-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-link.active { color: #389fbd; }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: #0a0f1e;
}
.hero-bg {
  position: absolute; top:0;right:0;bottom:0;left:0; background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay-1 { position: absolute; top:0;right:0;bottom:0;left:0; background: linear-gradient(to right, rgba(10,15,30,0.95), rgba(10,15,30,0.7), rgba(10,15,30,0.3)); }
.hero-overlay-2 { position: absolute; top:0;right:0;bottom:0;left:0; background: linear-gradient(to top, #0a0f1e, transparent, rgba(10,15,30,0.6)); }
.hero-accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, transparent, #389fbd, transparent);
}
.hero-content { position: relative; z-index: 10; width: 100%; padding-top: 6rem; padding-bottom: 5rem; }
.hero-content-inner { max-width: 48rem; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; }
.hero-badge-line { width: 2rem; height: 1px; background: #389fbd; }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.02em; color: #fff; margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.6);
  max-width: 42rem; margin-bottom: 2.5rem; line-height: 1.7; font-weight: 300;
}

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 4rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero-stat-value { display: flex; align-items: flex-end; line-height: 1; margin-bottom: 0.25rem; }
.hero-stat-unit { color: #389fbd; font-size: 1.5rem; font-weight: 700; margin-left: 0.25rem; margin-bottom: 0.25rem; }
.hero-stat-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.3); animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ======================================================
   PAGE HERO (for internal pages)
   ====================================================== */
.page-hero {
  position: relative; padding: 10rem 0 5rem; overflow: hidden; background: #080d18;
}
.page-hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; border-radius: 50%; filter: blur(80px); opacity: 0.1; pointer-events: none;
  background: radial-gradient(ellipse, #389fbd 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 10; text-align: center; }
.page-hero-label { margin-bottom: 1rem; }
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero-desc {
  color: rgba(255,255,255,0.5); font-size: 1.125rem; max-width: 36rem;
  margin: 0 auto; line-height: 1.7; font-weight: 300;
}

/* ======================================================
   MODELS LISTING (modelos.html)
   ====================================================== */
.models-listing { padding: 5rem 0; background: #0a0f1e; }

.models-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 4rem; }
.filter-btn {
  padding: 0.625rem 1.5rem; border-radius: 9999px; font-size: 0.875rem;
  font-weight: 600; cursor: pointer; transition: all 0.3s ease;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, #389fbd 0%, #2d7a94 100%);
  border-color: rgba(56, 159, 189, 0.3); color: #fff;
}

.vehicles-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media(min-width:640px){ .vehicles-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .vehicles-grid { grid-template-columns: repeat(2, 1fr); } }

.vehicle-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.5rem; overflow: hidden; position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vehicle-card:hover {
  border-color: rgba(56, 159, 189, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(56, 159, 189, 0.06);
}
.vehicle-card-image {
  position: relative; overflow: hidden;
  height: 240px; background: #0d1520;
}
@media(min-width:768px){ .vehicle-card-image { height: 260px; } }
.vehicle-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.vehicle-card:hover .vehicle-card-image img { transform: scale(1.05); }
.vehicle-card-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2; padding: 0.375rem 0.875rem; border-radius: 9999px;
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(56,159,189,0.25); border: 1px solid rgba(56,159,189,0.4); color: #fff;
}
.vehicle-card-body { padding: 1.5rem 2rem 2rem; }
.vehicle-card-name { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.vehicle-card-type { color: #389fbd; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.vehicle-card-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

.vehicle-card-specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem;
  padding: 1rem; border-radius: 0.75rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
}
.vehicle-card-spec { text-align: center; }
.vehicle-card-spec-value { font-size: 1rem; font-weight: 800; color: #fff; }
.vehicle-card-spec-value span { color: #389fbd; font-size: 0.75rem; font-weight: 600; }
.vehicle-card-spec-label { font-size: 0.625rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

.vehicle-card-ctas { display: flex; gap: 0.75rem; }
.vehicle-card-ctas .btn-primary, .vehicle-card-ctas .btn-outline {
  flex: 1; justify-content: center; padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.875rem;
}

/* ======================================================
   VEHICLE DETAIL PAGE
   ====================================================== */
.vehicle-hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  overflow: hidden; background: #080d18;
}
.vehicle-hero-glow {
  position: absolute; top:0;right:0;bottom:0;left:0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 60% 60%, rgba(56,159,189,0.1) 0%, transparent 70%);
}
.vehicle-hero-inner {
  position: relative; z-index: 10; width: 100%; padding-top: 7rem; padding-bottom: 5rem;
}
.vehicle-hero-layout {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media(min-width:1024px){ .vehicle-hero-layout { grid-template-columns: 1fr 1fr; } }

.vehicle-hero-name { font-size: clamp(3rem, 7vw, 5rem); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.vehicle-hero-type { color: #389fbd; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem; }
.vehicle-hero-desc { color: rgba(255,255,255,0.55); font-size: 1.125rem; line-height: 1.7; font-weight: 300; margin-bottom: 2rem; max-width: 32rem; }
.vehicle-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.vehicle-hero-image { position: relative; display: flex; align-items: center; justify-content: center; }
.vehicle-hero-image img {
  width: 100%; max-width: 36rem; object-fit: cover; border-radius: 1.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(56,159,189,0.1);
}
.car-glow { position: absolute; width: 80%; height: 60%; border-radius: 50%; filter: blur(48px); background: rgba(56,159,189,0.18); }
.car-reflection { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 75%; height: 4rem; filter: blur(32px); border-radius: 50%; opacity: 0.4; background: rgba(56,159,189,0.4); }

/* Quick specs bar */
.vehicle-quick-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  border-radius: 1rem; overflow: hidden; border: 1px solid rgba(56,159,189,0.15);
}
@media(min-width:640px){ .vehicle-quick-specs { grid-template-columns: repeat(4, 1fr); } }
.quick-spec {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.25rem 0.5rem; text-align: center; background: rgba(56,159,189,0.04);
}
.quick-spec-value { display: flex; align-items: flex-end; line-height: 1; margin-bottom: 0.25rem; }
.quick-spec-value span:first-child { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 900; color: #fff; }
.quick-spec-unit { color: #389fbd; font-size: 0.875rem; font-weight: 700; margin-left: 0.125rem; margin-bottom: 0.125rem; }
.quick-spec-label { color: rgba(255,255,255,0.3); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.25rem; }

/* Items de serie */
.vehicle-section { padding: 5rem 0; }
.vehicle-section.alt-bg { background: #080d18; }
.vehicle-section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.vehicle-section-desc {
  color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; line-height: 1.7; font-weight: 300; margin-bottom: 3rem;
}

.items-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media(min-width:640px){ .items-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .items-grid { grid-template-columns: repeat(3, 1fr); } }

.item-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem;
}
.item-icon {
  width: 2.5rem; height: 2.5rem; min-width: 2.5rem; min-height: 2.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: rgba(56,159,189,0.12); border: 1px solid rgba(56,159,189,0.2); overflow: hidden;
}
.item-icon svg { width: 1.25rem; height: 1.25rem; max-width: 1.25rem; max-height: 1.25rem; color: #389fbd; flex-shrink: 0; }
.item-title { color: #fff; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.25rem; }
.item-desc { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.6; font-weight: 300; }

/* Optional packages */
.packages-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width:768px){ .packages-grid { grid-template-columns: repeat(2, 1fr); } }

.package-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.5rem; padding: 2rem; position: relative; overflow: hidden;
}
.package-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #389fbd, #2d7a94);
}
.package-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.package-icon {
  width: 3rem; height: 3rem; min-width: 3rem; min-height: 3rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  background: rgba(56,159,189,0.12); border: 1px solid rgba(56,159,189,0.2); overflow: hidden;
}
.package-icon svg { width: 1.5rem; height: 1.5rem; max-width: 1.5rem; max-height: 1.5rem; color: #389fbd; flex-shrink: 0; }
.package-name { font-size: 1.125rem; font-weight: 700; color: #fff; }
.package-subtitle { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.package-items { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.package-item { display: flex; align-items: center; gap: 0.75rem; }
.package-check { width: 1.25rem; height: 1.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(56,159,189,0.15); }
.package-check svg { width: 0.75rem; height: 0.75rem; color: #389fbd; }
.package-item-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 400; }
.package-benefit {
  padding: 1rem; border-radius: 0.75rem;
  background: rgba(56,159,189,0.06); border: 1px solid rgba(56,159,189,0.12);
  color: rgba(255,255,255,0.6); font-size: 0.8rem; line-height: 1.6; font-weight: 300;
}

/* Ficha tecnica */
.specs-table-wrap {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.5rem; overflow: hidden;
}
.specs-table-header {
  padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(56,159,189,0.04);
}
.specs-table-title { font-size: 1.125rem; font-weight: 700; color: #fff; }
.specs-table-body { padding: 0.5rem 0; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.875rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.spec-row:last-child { border-bottom: none; }
.spec-row-label { color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 400; }
.spec-row-value { color: #fff; font-size: 0.875rem; font-weight: 600; text-align: right; }

/* CTA section on vehicle page */
.vehicle-cta-section {
  padding: 5rem 0; background: #0d1520;
}
.vehicle-cta-box {
  text-align: center; padding: 3rem 2rem; border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(56,159,189,0.12) 0%, rgba(45,122,148,0.06) 100%);
  border: 1px solid rgba(56,159,189,0.2); position: relative; overflow: hidden;
}
.vehicle-cta-box .mission-accent {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 16rem; height: 1px;
  background: linear-gradient(90deg, transparent, #389fbd, transparent);
}
.vehicle-cta-title { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.vehicle-cta-desc { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 32rem; margin: 0 auto 2rem; line-height: 1.7; font-weight: 300; }
.vehicle-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ======================================================
   TECHNOLOGY / FEATURES SECTION
   ====================================================== */
.technology { padding: 7rem 0; background: #0a0f1e; }
.tech-header { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: end; margin-bottom: 5rem; }
@media(min-width:1024px){ .tech-header { grid-template-columns: 1fr 1fr; } }
.tech-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em;
}
.tech-desc { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.7; font-weight: 300; }

.tech-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:768px){ .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .tech-grid { grid-template-columns: repeat(3, 1fr); } }

.tech-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 1.75rem;
}
.tech-card-icon {
  width: 2.75rem; height: 2.75rem; min-width: 2.75rem; min-height: 2.75rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  background: rgba(56,159,189,0.12); border: 1px solid rgba(56,159,189,0.2); overflow: hidden;
}
.tech-card-icon svg { width: 1.25rem; height: 1.25rem; max-width: 1.25rem; max-height: 1.25rem; color: #389fbd; flex-shrink: 0; }
.tech-card-title { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.75rem; line-height: 1.3; }
.tech-card-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; font-weight: 300; }

/* ======================================================
   MOBILITY / ELETROPOSTOS / INFO SECTIONS
   ====================================================== */
.info-section { padding: 5rem 0; }
.info-section.bg-dark { background: #080d18; }
.info-section.bg-default { background: #0a0f1e; }
.info-section.bg-alt { background: #0d1520; }

.info-layout {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media(min-width:1024px){ .info-layout { grid-template-columns: 1fr 1fr; } }
.info-layout.reverse { direction: ltr; }
@media(min-width:1024px){ .info-layout.reverse { direction: rtl; } .info-layout.reverse > * { direction: ltr; } }

.info-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.info-text { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.info-text strong { color: #fff; font-weight: 600; }

.info-visual {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  background: rgba(56,159,189,0.04); border: 1px solid rgba(56,159,189,0.15);
  padding: 3rem; display: flex; align-items: center; justify-content: center; min-height: 300px;
}
.info-visual svg { width: 8rem; height: 8rem; max-width: 8rem; max-height: 8rem; color: rgba(56,159,189,0.3); flex-shrink: 0; }

/* Benefits list */
.benefits-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.benefit-check {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: rgba(56,159,189,0.15); margin-top: 0.125rem;
}
.benefit-check svg { width: 0.875rem; height: 0.875rem; color: #389fbd; }
.benefit-text { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; }
.benefit-text strong { color: #fff; font-weight: 600; }

/* Stats row for info pages */
.info-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem;
}
@media(min-width:640px){ .info-stats { grid-template-columns: repeat(4, 1fr); } }
.info-stat {
  text-align: center; padding: 1.25rem; border-radius: 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.info-stat-value { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 0.25rem; }
.info-stat-value span { color: #389fbd; }
.info-stat-label { font-size: 0.625rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ======================================================
   STEPS / PROCESS (Como Comprar)
   ====================================================== */
.steps-section { padding: 5rem 0; }
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width:768px){ .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.5rem; padding: 2rem; text-align: center; position: relative;
}
.step-number {
  font-size: 3rem; font-weight: 900; color: rgba(56,159,189,0.15);
  line-height: 1; margin-bottom: 1rem;
}
.step-icon {
  width: 3.5rem; height: 3.5rem; min-width: 3.5rem; min-height: 3.5rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; background: rgba(56,159,189,0.12); border: 1px solid rgba(56,159,189,0.2); overflow: hidden;
}
.step-icon svg { width: 1.5rem; height: 1.5rem; max-width: 1.5rem; max-height: 1.5rem; color: #389fbd; flex-shrink: 0; }
.step-title { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.75rem; }
.step-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; font-weight: 300; }

/* ======================================================
   DEALERS / LOCATIONS (Onde Comprar)
   ====================================================== */
.dealers-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width:768px){ .dealers-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .dealers-grid { grid-template-columns: repeat(3, 1fr); } }

.dealer-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.5rem; padding: 2rem;
}
.dealer-name { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.dealer-address { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.dealer-phone { color: #389fbd; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.dealer-phone svg { width: 1rem; height: 1rem; }

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about { padding: 7rem 0; background: #0a0f1e; }
.about-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
@media(min-width:1024px){ .about-layout { grid-template-columns: 1fr 1fr; } }
.about-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 2rem;
}
.about-paragraphs { display: flex; flex-direction: column; gap: 1.25rem; color: rgba(255,255,255,0.55); font-size: 1rem; font-weight: 300; line-height: 1.7; }
.about-paragraphs strong { color: #fff; font-weight: 600; }

.about-video-wrap { position: relative; }
.about-video-glow {
  position: absolute; top:-12px;right:-12px;bottom:-12px;left:-12px; border-radius: 1.5rem; filter: blur(16px); opacity: 0.25;
  background: linear-gradient(135deg, #389fbd, transparent);
}
.about-video-inner { position: relative; border-radius: 1rem; overflow: hidden; border: 1px solid rgba(56,159,189,0.2); }
.about-video-inner video { width: 100%; max-width: 28rem; margin: 0 auto; height: auto; display: block; }

/* Values */
.values-header { text-align: center; margin-bottom: 3.5rem; }
.values-header-lines { display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.values-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; letter-spacing: -0.02em; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 5rem; }
@media(min-width:768px){ .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 2rem;
}
.value-icon {
  width: 3rem; height: 3rem; min-width: 3rem; min-height: 3rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; background: rgba(56,159,189,0.12); border: 1px solid rgba(56,159,189,0.2); overflow: hidden;
}
.value-icon svg { width: 1.5rem; height: 1.5rem; max-width: 1.5rem; max-height: 1.5rem; color: #389fbd; flex-shrink: 0; }
.value-title { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.75rem; }
.value-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; font-weight: 300; }

/* Mission */
.mission-box {
  border-radius: 1.5rem; padding: 2.5rem; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(56,159,189,0.12) 0%, rgba(45,122,148,0.08) 100%);
  border: 1px solid rgba(56,159,189,0.2);
}
@media(min-width:768px){ .mission-box { padding: 3.5rem; } }
.mission-accent {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 16rem; height: 1px;
  background: linear-gradient(90deg, transparent, #389fbd, transparent);
}
.mission-text { color: rgba(255,255,255,0.75); font-size: clamp(1rem, 2vw, 1.25rem); max-width: 56rem; margin: 0 auto; line-height: 1.7; font-weight: 300; }

/* ======================================================
   FUTURE SECTION
   ====================================================== */
.future { padding: 7rem 0; position: relative; overflow: hidden; background: #0d1520; }
.future-bg-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px; border-radius: 50%; filter: blur(48px); opacity: 0.1; pointer-events: none;
  background: radial-gradient(ellipse, #389fbd 0%, transparent 70%);
}
.future-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media(min-width:1024px){ .future-layout { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.future-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 2rem;
}
.future-text { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; font-weight: 300; margin-bottom: 2rem; }
.future-callout {
  border-radius: 1rem; padding: 1.5rem;
  background: rgba(56,159,189,0.07); border: 1px solid rgba(56,159,189,0.2);
}
.future-callout blockquote {
  color: rgba(255,255,255,0.8); font-size: 1.125rem; font-weight: 300;
  font-style: italic; line-height: 1.7;
}
.future-video-wrap { position: relative; }
.future-video-glow {
  position: absolute; top:-12px;right:-12px;bottom:-12px;left:-12px; border-radius: 1.5rem; filter: blur(16px); opacity: 0.3;
  background: linear-gradient(135deg, #389fbd, transparent);
}
.future-video-inner { position: relative; border-radius: 1rem; overflow: hidden; border: 1px solid rgba(56,159,189,0.2); }
.future-video-inner video { width: 100%; height: auto; display: block; }

/* ======================================================
   CONTACT SECTION
   ====================================================== */
.contact { padding: 7rem 0; background: #0d1520; }
.contact-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.contact-desc { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; font-weight: 300; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media(min-width:1024px){ .contact-layout { grid-template-columns: 3fr 2fr; } }

.form-box {
  border-radius: 1.5rem; padding: 2rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
}
@media(min-width:768px){ .form-box { padding: 2.5rem; } }
.form-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.form-icon {
  width: 2.5rem; height: 2.5rem; min-width: 2.5rem; min-height: 2.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  background: rgba(56,159,189,0.12); border: 1px solid rgba(56,159,189,0.2); overflow: hidden;
}
.form-icon svg { width: 1.25rem; height: 1.25rem; max-width: 1.25rem; max-height: 1.25rem; color: #389fbd; flex-shrink: 0; }
.form-title { font-size: 1.25rem; font-weight: 700; color: #fff; }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:768px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem;
}
.form-input { width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; }
.form-textarea { resize: none; }
.form-select { appearance: none; }
.form-select option { background: #0d1520; }
.form-submit { width: 100%; padding: 1rem 1.5rem; border-radius: 0.75rem; font-size: 1rem; justify-content: center; }

/* Contact info cards */
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  border-radius: 1rem; padding: 1.5rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
}
.info-card-inner { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon {
  width: 2.75rem; height: 2.75rem; min-width: 2.75rem; min-height: 2.75rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: rgba(56,159,189,0.12); border: 1px solid rgba(56,159,189,0.2); overflow: hidden;
}
.info-icon svg { width: 1.25rem; height: 1.25rem; max-width: 1.25rem; max-height: 1.25rem; color: #389fbd; flex-shrink: 0; }
.info-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.25rem; }
.info-value { color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; line-height: 1.6; white-space: pre-line; }

/* Horario */
.horario-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.horario-row:last-child { margin-bottom: 0; }
.horario-dia { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.horario-hora { font-size: 0.875rem; font-weight: 600; color: #389fbd; }
.horario-hora.fechado { color: rgba(255,255,255,0.2); }

/* CTA card */
.contact-cta-card {
  border-radius: 1rem; padding: 1.5rem;
  background: linear-gradient(135deg, rgba(56,159,189,0.12) 0%, rgba(45,122,148,0.06) 100%);
  border: 1px solid rgba(56,159,189,0.2);
}
.contact-cta-text { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
.contact-cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Map */
.map-wrap { border-radius: 1.5rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.map-header {
  padding: 1.25rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.map-title { color: #fff; font-weight: 700; font-size: 1rem; }
.map-subtitle { color: rgba(255,255,255,0.4); font-size: 0.875rem; margin-top: 0.125rem; }
.map-iframe { height: 20rem; }
.map-iframe iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg) brightness(0.8); }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer { background: #060b12; border-top: 1px solid rgba(56,159,189,0.1); }
.footer-inner { padding-top: 4rem; padding-bottom: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
@media(min-width:768px){ .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-logo { height: 2.5rem; width: auto; margin-bottom: 1.5rem; }
.footer-brand-text { color: rgba(255,255,255,0.35); font-size: 0.875rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

.social-links { display: flex; align-items: center; gap: 0.75rem; }
.social-link {
  width: 2.25rem; height: 2.25rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s;
}
.social-link:hover { transform: scale(1.1); }
.social-link svg { width: 1rem; height: 1rem; color: rgba(255,255,255,0.5); }

.footer-heading { color: #fff; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { color: rgba(255,255,255,0.35); font-size: 0.875rem; transition: color 0.2s; }
.footer-link:hover { color: #389fbd; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; color: #389fbd; flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item span { color: rgba(255,255,255,0.35); font-size: 0.875rem; white-space: pre-line; line-height: 1.6; }

/* Newsletter */
.newsletter {
  border-radius: 1rem; padding: 2rem; margin-bottom: 2.5rem;
  background: rgba(56,159,189,0.05); border: 1px solid rgba(56,159,189,0.12);
}
.newsletter-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: space-between; }
@media(min-width:768px){ .newsletter-inner { flex-direction: row; } }
.newsletter-title { color: #fff; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.newsletter-desc { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; flex-shrink: 0; width: 100%; }
@media(min-width:640px){ .newsletter-form { flex-direction: row; width: auto; } }
.newsletter-input { padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; width: 100%; }
@media(min-width:640px){ .newsletter-input { width: 16rem; } }
.newsletter-btn { padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-size: 0.875rem; white-space: nowrap; }

/* Bottom bar */
.footer-bottom {
  display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05);
}
@media(min-width:768px){ .footer-bottom { flex-direction: row; } }
.footer-copyright { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
@media(min-width:768px){ .footer-copyright { flex-direction: row; text-align: left; } }
.footer-copyright span { color: rgba(255,255,255,0.25); font-size: 0.875rem; }
.footer-copyright .dot { display: none; color: rgba(255,255,255,0.15); }
@media(min-width:768px){ .footer-copyright .dot { display: inline; } }
.footer-copyright a { color: #389fbd; transition: color 0.2s; }
.footer-copyright a:hover { color: #b8e6f0; }

.footer-legal { display: flex; align-items: center; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.25); font-size: 0.75rem; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ======================================================
   HOME FEATURED MODELS
   ====================================================== */
.home-models { padding: 7rem 0; background: #080d18; position: relative; overflow: hidden; }
.home-models-glow {
  position: absolute; top:0;right:0;bottom:0;left:0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 70%, rgba(56,159,189,0.08) 0%, transparent 70%);
}
.home-models-inner { position: relative; z-index: 10; }
.home-models-header { text-align: center; margin-bottom: 4rem; }

/* ======================================================
   HOME DIFFERENTIALS
   ====================================================== */
.differentials { padding: 7rem 0; background: #0a0f1e; }
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:1024px){ .diff-grid { grid-template-columns: repeat(3, 1fr); } }
.diff-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.5rem; padding: 2.5rem; text-align: center;
}
.diff-icon {
  width: 4rem; height: 4rem; min-width: 4rem; min-height: 4rem; border-radius: 1.25rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; background: rgba(56,159,189,0.12); border: 1px solid rgba(56,159,189,0.2); overflow: hidden;
}
.diff-icon svg { width: 2rem; height: 2rem; min-width: 2rem; min-height: 2rem; max-width: 2rem; max-height: 2rem; color: #389fbd; flex-shrink: 0; }
.diff-title { color: #fff; font-weight: 800; font-size: 1.25rem; margin-bottom: 0.75rem; }
.diff-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; font-weight: 300; }

/* ======================================================
   FLOATING WHATSAPP
   ====================================================== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 40;
  width: 3.5rem; height: 3.5rem; min-width: 3.5rem; min-height: 3.5rem;
  border-radius: 50%; overflow: hidden;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; max-width: 1.75rem; max-height: 1.75rem; color: #fff; flex-shrink: 0; }

/* ======================================================
   LEAD CTA BANNER
   ====================================================== */
.lead-banner {
  padding: 5rem 0; background: #0d1520; position: relative; overflow: hidden;
}
.lead-banner-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; border-radius: 50%; filter: blur(80px); opacity: 0.08; pointer-events: none;
  background: radial-gradient(ellipse, #389fbd, transparent 70%);
}
.lead-banner-inner {
  position: relative; z-index: 10; text-align: center;
  padding: 3rem 2rem; border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(56,159,189,0.1) 0%, rgba(45,122,148,0.05) 100%);
  border: 1px solid rgba(56,159,189,0.2);
}
.lead-banner-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 1rem;
}
.lead-banner-desc {
  color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 32rem; margin: 0 auto 2rem; line-height: 1.7; font-weight: 300;
}
.lead-banner-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ======================================================
   HIGHLIGHTS BAR (selling points)
   ====================================================== */
.highlights-bar {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem;
}
@media(min-width:768px){ .highlights-bar { grid-template-columns: repeat(4, 1fr); } }

.highlight-pill {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.25rem 1rem; border-radius: 1rem;
  background: linear-gradient(135deg, rgba(56,159,189,0.08) 0%, rgba(56,159,189,0.02) 100%);
  border: 1px solid rgba(56,159,189,0.15);
  transition: all 0.3s ease;
}
.highlight-pill:hover {
  border-color: rgba(56,159,189,0.35);
  background: linear-gradient(135deg, rgba(56,159,189,0.12) 0%, rgba(56,159,189,0.04) 100%);
  transform: translateY(-2px);
}
.highlight-pill-icon {
  width: 2.5rem; height: 2.5rem; min-width: 2.5rem; min-height: 2.5rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem; background: rgba(56,159,189,0.15); overflow: hidden;
}
.highlight-pill-icon svg { width: 1.25rem; height: 1.25rem; max-width: 1.25rem; max-height: 1.25rem; color: #389fbd; flex-shrink: 0; }
.highlight-pill-value { font-size: 1.125rem; font-weight: 800; color: #fff; margin-bottom: 0.125rem; }
.highlight-pill-value span { color: #389fbd; }
.highlight-pill-label { font-size: 0.625rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; line-height: 1.4; }

/* Banner destaque (cheapest car) */
.promo-banner {
  padding: 1rem 1.5rem; border-radius: 1rem; margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(56,159,189,0.12) 0%, rgba(45,122,148,0.06) 100%);
  border: 1px solid rgba(56,159,189,0.25);
  display: flex; align-items: center; gap: 0.75rem;
}
.promo-banner-icon {
  width: 2rem; height: 2rem; min-width: 2rem; min-height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56,159,189,0.2); overflow: hidden;
}
.promo-banner-icon svg { width: 1rem; height: 1rem; max-width: 1rem; max-height: 1rem; color: #389fbd; flex-shrink: 0; }
.promo-banner-text { font-size: 0.85rem; font-weight: 600; color: #fff; }
.promo-banner-text span { color: #389fbd; }

/* WhatsApp channels */
.whatsapp-channels { display: flex; flex-direction: column; gap: 1rem; }
.wa-channel {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  border-radius: 1rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s ease; text-decoration: none;
}
.wa-channel:hover {
  border-color: rgba(37,211,102,0.4); background: rgba(37,211,102,0.05);
  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.wa-channel-icon {
  width: 3rem; height: 3rem; min-width: 3rem; min-height: 3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; overflow: hidden; flex-shrink: 0;
}
.wa-channel-icon svg { width: 1.5rem; height: 1.5rem; max-width: 1.5rem; max-height: 1.5rem; color: #fff; flex-shrink: 0; }
.wa-channel-info { flex: 1; }
.wa-channel-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.125rem; }
.wa-channel-desc { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.wa-channel-number { font-size: 0.875rem; font-weight: 600; color: #25d366; white-space: nowrap; }
.wa-channel-arrow { color: rgba(255,255,255,0.2); transition: color 0.3s; }
.wa-channel:hover .wa-channel-arrow { color: #25d366; }

/* ======================================================
   BLOG / NA MIDIA
   ====================================================== */
.blog-listing { padding: 5rem 0; background: #0a0f1e; }

.blog-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width:640px){ .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.25rem; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 159, 189, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(56,159,189,0.06);
}
.blog-card-image {
  position: relative; overflow: hidden; height: 200px;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(8,13,24,0.6), transparent);
  pointer-events: none;
}
.blog-card-source {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(56,159,189,0.4);
  border: 1px solid rgba(56,159,189,0.5); color: #fff;
}
.blog-card-source.instagram { background: rgba(225,48,108,0.3); border-color: rgba(225,48,108,0.4); }
.blog-card-source.video { background: rgba(255,0,0,0.25); border-color: rgba(255,0,0,0.35); }

.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.blog-card-title {
  font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.4;
  margin-bottom: 0.75rem; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card:hover .blog-card-title { color: #389fbd; }
.blog-card-excerpt {
  font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; font-weight: 300;
  margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8rem; font-weight: 600; color: #389fbd;
  transition: gap 0.3s;
}
.blog-card:hover .blog-card-link { gap: 0.625rem; }
.blog-card-link svg { width: 14px; height: 14px; }

/* Featured blog card (first/large) */
.blog-featured {
  display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: 2rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.5rem; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media(min-width:768px){ .blog-featured { grid-template-columns: 1fr 1fr; } }
.blog-featured:hover {
  border-color: rgba(56, 159, 189, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(56,159,189,0.06);
}
.blog-featured-image { position: relative; overflow: hidden; min-height: 250px; }
@media(min-width:768px){ .blog-featured-image { min-height: 320px; } }
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-featured:hover .blog-featured-image img { transform: scale(1.05); }
.blog-featured-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-title { font-size: 1.375rem; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 1rem; }
.blog-featured:hover .blog-featured-title { color: #389fbd; }
.blog-featured-excerpt { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

/* ======================================================
   VEHICLE GALLERY
   ====================================================== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media(min-width:768px){ .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1024px){ .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  border-radius: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; position: relative; height: 200px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; top:0;right:0;bottom:0;left:0;
  background: linear-gradient(to top, rgba(10,15,30,0.4), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; top:0;right:0;bottom:0;left:0; z-index: 100;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
