﻿:root {
  --color-red: #CC0000;
  --color-red-dark: #990000;
  --color-yellow: #F5A800;
  --color-dark: #1A1A1A;
  --color-darker: #0B0B0F;
  --color-gray: #64748B;
  --color-gray-light: #94A3B8;
  --color-bg-light: #F8FAFC;
  --color-bg-muted: #F1F5F9;
  --color-white: #FFFFFF;
  --color-wa: #25D366;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-darker);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(11, 11, 15, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 11, 15, 0.96);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-image { display: flex; align-items: center; max-width: 240px; }
.logo-image img { width: 100%; height: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35)); }
.footer-logo { max-width: 280px; margin-bottom: 12px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.88); font-weight: 600; font-size: 15px;
  padding: 8px 0; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--color-red); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-wa); color: #fff; font-weight: 700;
  padding: 11px 20px; border-radius: 999px; font-size: 14px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.nav-cta:hover { background: #1ebe57; color: #fff; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px; height: 100vh;
  background: var(--color-darker); z-index: 200; padding: 80px 28px;
  transition: right 0.35s ease; display: flex; flex-direction: column; gap: 8px;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a { color: #fff; font-size: 17px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.drawer-close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 32px; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; font-weight: 700; font-size: 15px; font-family: var(--font-display);
  border-radius: 999px; letter-spacing: 0.02em; transition: all var(--transition); cursor: pointer;
}
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-primary { background: var(--color-red); color: #fff; box-shadow: 0 8px 24px rgba(204,0,0,0.35); }
.btn-primary:hover { background: var(--color-red-dark); transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,0.08); color: #fff; border: 2px solid rgba(255,255,255,0.35); backdrop-filter: blur(8px); }
.btn-outline:hover { background: #fff; color: var(--color-darker); border-color: #fff; }
.btn-outline-white { border-color: #fff; }
.btn-outline--dark { background: transparent; color: var(--color-darker); border: 2px solid #CBD5E1; backdrop-filter: none; }
.btn-outline--dark:hover { background: var(--color-darker); color: #fff; border-color: var(--color-darker); }
.btn-wa { background: var(--color-wa); color: #fff; border-radius: 999px; }
.btn-wa:hover { background: #1ebe57; color: #fff; }
.drawer-wa { margin-top: 20px; }
.footer-wa { margin-top: 14px; }
.footer-grid a.btn-wa,
.footer-grid a.btn-wa:hover { color: #fff; }

/* HERO MODERN */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-modern { min-height: 92vh; display: flex; align-items: center; padding: 120px 0 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slider { overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, rgba(11,11,15,0.94) 0%, rgba(11,11,15,0.82) 35%, rgba(11,11,15,0.55) 65%, rgba(204,0,0,0.28) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-grid--single {
  grid-template-columns: minmax(0, 680px);
  justify-content: start;
  text-align: left;
}
.hero-content { max-width: 640px; text-align: left; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 24px; color: rgba(255,255,255,0.92);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem); line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero p.sub { color: rgba(255,255,255,0.78); font-size: 1.125rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }

.hero-compact {
  padding: 140px 0 70px; background: var(--color-darker); color: #fff;
  position: relative; overflow: hidden;
}
.hero-compact::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,0.15), transparent 60%);
}
.hero-compact .container { position: relative; z-index: 2; }
.hero-compact h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; letter-spacing: -0.02em;
}
.hero-compact p { color: var(--color-gray-light); font-size: 17px; max-width: 680px; }

/* STATS */
.stats-bar { background: var(--color-red); color: #fff; padding: 36px 0; }
.stats-modern .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-modern .stats-grid strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; margin-bottom: 4px;
}
.stats-modern .stats-grid span { font-size: 14px; opacity: 0.9; font-weight: 500; }
.stats-grid div { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; }

/* SECTIONS */
section { padding: 88px 0; }
.section-dark { background: var(--color-dark); color: #fff; }
.section-darker { background: var(--color-darker); color: #fff; }
.section-light { background: var(--color-bg-light); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); text-align: center;
  margin-bottom: 16px; line-height: 1.12; letter-spacing: -0.02em;
}
.section-sub { text-align: center; color: var(--color-gray); font-size: 17px; max-width: 720px; margin: 0 auto 40px; }
.section-sub-muted { color: #94A3B8; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--color-red); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 12px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 32px; height: 3px; background: var(--color-red); border-radius: 2px; }
.eyebrow-light { color: var(--color-yellow); }
.eyebrow-light::before { background: var(--color-yellow); }
.text-accent { color: var(--color-yellow); }

/* AUTHORITY */
.authority-section { background: #fff; }
.authority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.authority-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.authority-grid h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.12;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.authority-grid p { color: #475569; font-size: 17px; margin-bottom: 16px; }
.check-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: #334155;
}
.check-list li::before { content: "✓"; color: var(--color-red); font-weight: 800; flex-shrink: 0; }
.check-list--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }

/* MAINTENANCE */
.maintenance-section { background: #fff; }
.maintenance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.maintenance-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.maintenance-grid h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.12;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.maintenance-grid p { color: #475569; font-size: 16px; margin-bottom: 16px; }
.checklist-box {
  background: var(--color-bg-muted); border-radius: var(--radius-md);
  padding: 24px; margin: 24px 0; border: 1px solid #E2E8F0;
}
.checklist-box h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 16px; }

/* TOPICS */
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.topic-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid #E2E8F0; box-shadow: var(--shadow-sm);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.topic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.topic-card img { width: 100%; height: 180px; object-fit: cover; }
.topic-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.topic-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; line-height: 1.25; }
.topic-card p { color: #64748B; font-size: 15px; flex: 1; }
.topic-link { margin-top: 14px; color: var(--color-red); font-weight: 700; font-size: 14px; }

/* CORRECTIVE */
.corrective-section { padding: 88px 0; }
.corrective-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.section-title--left { text-align: left; margin-bottom: 20px; }
.text-muted { color: #94A3B8; font-size: 16px; margin-bottom: 16px; }
.text-muted strong { color: #fff; }
.symptoms-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.symptoms-list li {
  padding: 18px 20px; background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08);
  color: #CBD5E1; font-size: 15px; line-height: 1.5;
}
.symptoms-list strong { color: #fff; display: block; margin-bottom: 4px; }

/* SEO BLOCK */
.seo-grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 48px; align-items: start; }
.seo-grid h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.seo-grid p { color: #475569; font-size: 16px; margin-bottom: 16px; }
.seo-aside {
  background: #fff; border-radius: var(--radius-md); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid #E2E8F0;
  position: sticky; top: 100px;
}
.seo-aside h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 16px; }
.seo-aside ul { list-style: none; margin-bottom: 24px; }
.seo-aside li { padding: 10px 0; border-bottom: 1px solid #E2E8F0; color: #475569; font-weight: 600; font-size: 15px; }
.seo-aside li::before { content: "→ "; color: var(--color-red); }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .cards-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cards-grid--4 { grid-template-columns: 1fr; } }
.cards-modern .card {
  background: #fff; padding: 32px 28px; border-radius: var(--radius-md);
  border: 1px solid #E2E8F0; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.cards-modern .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(204,0,0,0.25); }
.card-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.5rem;
  color: rgba(204,0,0,0.15); line-height: 1; margin-bottom: 12px;
}
.card .icon { width: 48px; height: 48px; color: var(--color-red); margin-bottom: 18px; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--color-gray); font-size: 15px; }
.card { background: #fff; padding: 32px 26px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all var(--transition); }

/* GALLERY */
.gallery-strip { padding: 0; overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid img:hover { transform: scale(1.04); }

/* SERVICES SHOWCASE */
.services-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 16px; }
.service-card-img {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid #E2E8F0; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.service-card-img:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-img img { width: 100%; height: 160px; object-fit: cover; }
.service-card-img div { padding: 20px; }
.service-card-img h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; }
.service-card-img p { color: var(--color-gray); font-size: 14px; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
@media(min-width:768px){ .services-grid { grid-template-columns: repeat(5, 1fr); } }
.service-mini {
  background: #fff; padding: 24px 16px; text-align: center; border-radius: var(--radius-sm);
  border: 1px solid #E2E8F0; transition: all var(--transition);
}
.service-mini:hover { border-color: var(--color-red); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.service-mini .icon { width: 36px; height: 36px; color: var(--color-red); margin: 0 auto 12px; }
.service-mini span { font-family: var(--font-display); font-weight: 700; font-size: 15px; display: block; }
.center-btn { text-align: center; margin-top: 40px; }
.center-btn a { color: var(--color-red); font-weight: 700; border-bottom: 2px solid var(--color-red); padding-bottom: 4px; }

.detailed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: #fff; padding: 32px; border-radius: var(--radius-md);
  border-top: 4px solid var(--color-red); display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .icon { width: 48px; height: 48px; color: var(--color-red); }
.service-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.service-card p { color: #475569; font-size: 15px; flex-grow: 1; }
.service-card a { align-self: flex-start; color: var(--color-red); font-weight: 700; font-size: 14px; border-bottom: 2px solid var(--color-red); }
.service-card--highlight { border-top-color: var(--color-yellow); background: linear-gradient(180deg, #FFFBF0 0%, #fff 100%); }

/* FLEET */
.fleet-hero-section { padding: 88px 0; }
.fleet-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.fleet-hero-grid h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.12; margin-bottom: 20px;
}
.fleet-hero-grid p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 17px; }
.fleet-hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.fleet-program-section { background: #fff; }
.fleet-intro { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.fleet-intro .eyebrow { justify-content: center; }
.fleet-intro .eyebrow::after { content: ""; width: 32px; height: 3px; background: var(--color-red); }
.fleet-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fleet-steps article {
  background: var(--color-bg-muted); border-radius: var(--radius-md); padding: 28px 24px;
  min-height: 220px; border: 1px solid #E2E8F0; transition: all var(--transition);
}
.fleet-steps article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fleet-steps span {
  display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  color: rgba(204,0,0,0.18); margin-bottom: 12px; line-height: 1;
}
.fleet-steps h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.fleet-steps p { color: #64748B; font-size: 15px; }

.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.proof-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 32px; border-bottom: 3px solid var(--color-red);
}
.proof-card strong {
  display: block; font-family: var(--font-display); font-size: 1.75rem;
  color: var(--color-yellow); margin-bottom: 6px;
}
.proof-card span { display: block; font-weight: 700; color: #fff; margin-bottom: 12px; font-size: 15px; }
.proof-card p { color: #94A3B8; font-size: 15px; }

.who-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.who-tags span {
  padding: 12px 20px; background: rgba(255,255,255,0.06); border-radius: 999px;
  font-weight: 600; font-size: 14px; border: 1px solid rgba(255,255,255,0.1);
}
.who-tags span.highlight { background: var(--color-red); border-color: var(--color-red); color: #fff; }

.fleet-cta-section { padding: 80px 0; }
.fleet-cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.fleet-cta-grid h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.12; margin-bottom: 16px;
}
.fleet-cta-grid p { color: #475569; font-size: 17px; }
.fleet-cta-card {
  background: var(--color-darker); color: #fff; border-radius: var(--radius-md);
  padding: 36px; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}
.fleet-cta-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 12px; }
.fleet-cta-card p { color: #94A3B8; margin-bottom: 24px; }

.frotas-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.frotas-block h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 20px; }
.frotas-block h2 span { color: var(--color-yellow); }
.frotas-block p { color: rgba(255,255,255,0.75); margin-bottom: 30px; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefits-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.benefits-list li::before { content: "✓"; color: var(--color-yellow); font-weight: 800; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid #E2E8F0; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px; font-weight: 700; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--color-red); font-size: 1.25rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 24px 20px; color: #475569; font-size: 15px; }

/* SEO LANDING PAGES */
.seo-hero {
  padding: 150px 0 82px;
  background:
    linear-gradient(105deg, rgba(11,11,15,0.94), rgba(11,11,15,0.76) 58%, rgba(204,0,0,0.28)),
    url("../images/empresa-oficina-pneus.png") center/cover;
  color: #fff;
}
.seo-hero .container { max-width: 980px; }
.seo-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.seo-hero p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 760px; }
.seo-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 360px;
  gap: 42px;
  align-items: start;
}
.seo-article {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.seo-article article,
.seo-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.seo-article h2,
.seo-card h2,
.seo-card h3 {
  font-family: var(--font-display);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.seo-article p,
.seo-card p { color: #475569; margin-bottom: 14px; }
.seo-article ul,
.seo-card ul { list-style: none; display: grid; gap: 10px; margin-top: 16px; }
.seo-article li,
.seo-card li { color: #334155; font-weight: 600; }
.seo-article li::before,
.seo-card li::before { content: "✓"; color: var(--color-red); font-weight: 800; margin-right: 8px; }
.seo-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-links { display: grid; gap: 8px; }
.service-links a {
  padding: 12px 14px;
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}
.service-links a:hover { background: var(--color-red); color: #fff; }
.faq-schema-block .faq-item { box-shadow: none; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.areas-grid span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-bg-muted);
  color: #334155;
  font-weight: 800;
  font-size: 14px;
}

/* MAP / CONTACT */
.map-block { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: stretch; }
.map-block iframe { width: 100%; height: 100%; min-height: 400px; border: 0; border-radius: var(--radius-md); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px;
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid #E2E8F0; box-shadow: var(--shadow-sm);
}
.section-dark .contact-item, .section-darker .contact-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: #fff; }
.contact-item .icon { width: 28px; height: 28px; color: var(--color-red); flex-shrink: 0; }
.contact-item h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 15px; color: inherit; }
.contact-item a:hover { color: var(--color-red); }

/* FROTAS PAGE */
.hero-frotas { background: var(--color-darker); }
.who-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 1000px; margin: 0 auto; }
.who-list span { padding: 14px 22px; background: #fff; border-radius: 999px; font-weight: 600; font-size: 15px; box-shadow: var(--shadow-sm); }
.who-list span.highlight { background: var(--color-red); color: #fff; }

.form-box {
  max-width: 680px; margin: 0 auto; background: var(--color-darker);
  padding: 40px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm);
  color: #fff; font-family: inherit; font-size: 15px; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.form-alt { color: var(--color-gray-light); font-size: 14px; }
.form-alt a { color: var(--color-wa); font-weight: 700; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-feedback {
  margin-bottom: 20px; padding: 14px 18px; border-radius: 12px; font-size: 15px; font-weight: 600;
}
.form-feedback--ok { background: rgba(37,211,102,0.15); color: #86efac; border: 1px solid rgba(37,211,102,0.35); }
.form-feedback--erro { background: rgba(204,0,0,0.15); color: #fca5a5; border: 1px solid rgba(204,0,0,0.35); }

/* EMPRESA */
.empresa-hero {
  min-height: 520px;
  display: flex;
  align-items: end;
  padding-bottom: 88px;
  background:
    linear-gradient(105deg, rgba(11,11,15,0.94) 0%, rgba(11,11,15,0.78) 48%, rgba(204,0,0,0.28) 100%),
    url("../images/empresa-fachada.png") center/cover;
}
.empresa-hero::before { display: none; }
.empresa-hero .badge { margin-bottom: 18px; }
.empresa-hero h1 { max-width: 820px; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.02; }
.empresa-hero p { max-width: 760px; color: rgba(255,255,255,0.78); font-size: 18px; }
.empresa-modern-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(204,0,0,0.08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}
.about-modern {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 32px;
}
.about-modern__content {
  background: rgba(255,255,255,0.84);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}
.about-modern__content p { font-size: 16px; color: #475569; margin-bottom: 16px; }
.about-modern__media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.about-modern__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,11,15,0.78) 100%);
  z-index: 1;
}
.about-modern__media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.media-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(14px);
  color: #fff;
}
.media-card strong { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.media-card span { color: rgba(255,255,255,0.78); font-weight: 700; max-width: 180px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #0B0B0F;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0 70px;
}
.about-proof-grid article {
  padding: 30px;
  border-radius: var(--radius-md);
  background: #0B0B0F;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}
.about-proof-grid span {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-yellow);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.about-proof-grid h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.about-proof-grid p { color: #CBD5E1; font-size: 15px; }
.empresa-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 56px;
}
.story-copy p { color: #475569; margin-bottom: 16px; }
.story-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-image-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.story-image-grid img:nth-child(2) { margin-top: 54px; }
.about-block { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: start; margin-bottom: 56px; }
.about-block p { font-size: 16px; color: #475569; margin-bottom: 16px; }
.about-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.35rem); line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.02em; color: var(--color-darker);
}
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.about-image { background: #f1f5f9; border-radius: var(--radius-md); aspect-ratio: 4/3; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid #E2E8F0; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-seo { margin-bottom: 48px; }
.section-light-inner {
  background: var(--color-bg-light); border-radius: var(--radius-md);
  padding: 40px; border: 1px solid #E2E8F0;
}
.about-seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 24px; }
.about-seo-grid h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 12px; color: var(--color-darker); }
.about-seo-grid p { color: #475569; font-size: 15px; line-height: 1.65; }
@media (max-width: 900px) { .about-seo-grid { grid-template-columns: 1fr; } }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; margin-top: 40px; }
.timeline div { padding: 24px 12px; border-top: 3px solid var(--color-red); }
.timeline strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--color-red); margin-bottom: 6px; }
.timeline span { font-size: 14px; color: var(--color-gray); font-weight: 600; }
.timeline-modern {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
}
.timeline-modern div {
  border-top: 0;
  border-radius: var(--radius-md);
  background: #F8FAFC;
}
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; margin-top: 50px; }
.numbers-grid div { padding: 30px 16px; background: #fff; border-radius: var(--radius-md); border: 1px solid #E2E8F0; }
.numbers-grid strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--color-red); line-height: 1; }
.numbers-grid span { font-size: 14px; color: #64748B; font-weight: 600; margin-top: 8px; display: block; }

.banner-cta { background: var(--color-red); color: #fff; padding: 56px 0; text-align: center; }
.banner-cta h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 20px; }

/* FOOTER */
footer { background: var(--color-darker); color: #fff; padding: 64px 0 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 16px; color: var(--color-red); }
.footer-grid p, .footer-grid a { color: #94A3B8; font-size: 14px; margin-bottom: 8px; display: block; }
.footer-grid a:hover { color: #fff; }
.footer-tagline { font-style: italic; color: #64748B; margin-top: 10px; font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #64748B; font-size: 13px;
}

/* WA FLOAT */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
  background: var(--color-wa); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45); z-index: 90; transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .authority-grid, .seo-grid, .fleet-hero-grid, .fleet-cta-grid,
  .services-showcase, .proof-grid, .fleet-steps, .maintenance-grid,
  .topics-grid, .corrective-grid, .about-modern, .empresa-story { grid-template-columns: 1fr 1fr; }
  .about-proof-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .check-list--cols { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo-image { max-width: 200px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-modern { min-height: 720px; padding: 120px 0 72px; }
  .hero h1 { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero p.sub { font-size: 1rem; }
  .hero-bg-overlay { background: linear-gradient(105deg, rgba(11,11,15,0.94) 0%, rgba(11,11,15,0.78) 62%, rgba(204,0,0,0.24) 100%); }
  .stats-modern .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .authority-grid, .seo-grid, .fleet-hero-grid, .fleet-cta-grid,
  .frotas-block, .map-block, .about-block, .about-modern, .empresa-story,
  .maintenance-grid, .corrective-grid, .seo-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-showcase, .proof-grid, .fleet-steps, .topics-grid { grid-template-columns: 1fr; }
  .empresa-hero { min-height: 480px; padding-bottom: 64px; }
  .about-modern__media, .about-modern__media img { min-height: 380px; }
  .story-image-grid img { height: 260px; }
  .story-image-grid img:nth-child(2) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 0; }
  .seo-aside { position: static; }
  .seo-sidebar { position: static; }
  .map-block iframe { min-height: 320px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .navbar { padding: 12px 0; }
  .stats-modern .stats-grid, .gallery-grid, .timeline { grid-template-columns: 1fr; }
  .stats-bar { padding: 24px 0; }
  .stats-grid div { font-size: 16px; }
  .stats-modern .stats-grid strong { font-size: 1.5rem; }
  .stats-modern .stats-grid span { font-size: 12px; }
  .logo-image { max-width: 170px; }
  .hero-modern { min-height: 680px; padding: 112px 0 56px; }
  .hero h1 { font-size: clamp(2rem, 12vw, 3rem); }
  .hero-actions, .about-actions { width: 100%; }
  .hero-actions .btn, .about-actions .btn, .banner-cta .btn { width: 100%; }
  .hero-compact { padding: 118px 0 54px; }
  .hero-compact h1 { font-size: clamp(2rem, 11vw, 2.8rem); }
  .seo-hero { padding: 128px 0 60px; }
  .seo-hero p { font-size: 16px; }
  .section-title { font-size: clamp(1.8rem, 10vw, 2.45rem); }
  .empresa-hero { padding-top: 120px; min-height: 520px; }
  .about-modern__content, .about-proof-grid article { padding: 24px; }
  .about-modern__media, .about-modern__media img { min-height: 320px; }
  .media-card { flex-direction: column; align-items: flex-start; }
  .story-image-grid { grid-template-columns: 1fr; }
  .service-card, .cards-modern .card, .seo-aside, .seo-article article, .seo-card, .fleet-cta-card { padding: 24px; }
  .topic-card img, .service-card-img img { height: 210px; }
  .form-box { padding: 24px; }
  .wa-float { width: 52px; height: 52px; right: 18px; bottom: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
}
