/* ============================================================
   ALEMAR LOGÍSTICA E TRANSPORTE - STYLESHEET PRINCIPAL
   ============================================================ */

/* 1. IMPORTS & VARIABLES
   ============================================================ */

:root {
  --verde:        #1D8C35;
  --verde-escuro: #145C24;
  --verde-hover:  #17732c;
  --creme:        #f5f3ee;
  --cinza-texto:  #4a4a45;
  --cinza-claro:  #e8e6e1;
  --cinza-medio:  #9e9b95;
  --branco:       #ffffff;
  --preto-suave:  #1a1a18;

  --font-titulo:    'Outfit', 'DM Sans', system-ui, sans-serif;
  --font-headline:  'Barlow Condensed', Arial Narrow, sans-serif;
  --font-corpo:     'DM Sans', Inter, system-ui, sans-serif;

  --container:  1180px;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);

  --transition: .22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-corpo);
  color: var(--cinza-texto);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { line-height: 1.2; }

.section-tag {
  font-family: var(--font-headline);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--verde);
  display: block;
  margin-bottom: .5rem;
}

.section-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--preto-suave);
  line-height: 1.18;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--verde);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--cinza-medio);
  max-width: 560px;
  line-height: 1.7;
}

/* 4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

.section-intro {
  margin-bottom: 44px;
}

/* 5. HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,20,11,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

/* Hero escuro: nav transparente com gradiente */
.nav-transparent .site-header {
  background: linear-gradient(to bottom, rgba(5,15,8,.82) 0%, transparent 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.nav-transparent .site-header.scrolled {
  background: rgba(8,20,11,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

/* fallback text logo */
.nav-logo-text { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--verde);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--verde);
  color: var(--branco) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--verde-escuro);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: all var(--transition);
}

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-corpo);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--verde);
  color: var(--branco);
  border-color: var(--verde);
}

.btn-primary:hover {
  background: var(--verde-escuro);
  border-color: var(--verde-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,140,53,.35);
}

.btn-outline {
  background: transparent;
  color: var(--verde);
  border-color: var(--verde);
}

.btn-outline:hover {
  background: var(--verde);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--branco);
  color: var(--verde-escuro);
  border-color: var(--branco);
}

.btn-white:hover {
  background: var(--creme);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--branco);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--branco);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1eae56;
  border-color: #1eae56;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .83rem; }

/* WA icon inline */
.btn-whatsapp::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* 7. HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--verde-escuro) 0%, #1a7a30 55%, #1f8c30 100%);
  color: var(--branco);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Radial glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
  position: relative;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hero-pill {
  font-family: var(--font-corpo);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-pill {
  cursor: default;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, color .22s ease;
}
.hero-pill:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero-pill:hover .hero-pill-num {
  color: #8df7a0;
}

.hero-pill-num {
  font-family: var(--font-headline);
  font-weight: 700;
  color: #5fe87a;
  font-size: .85rem;
  transition: color .22s ease;
}

/* keep eyebrow for other pages if needed */
.hero-eyebrow {
  font-family: var(--font-headline);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fe87a;
  box-shadow: 0 0 8px rgba(95,232,122,.7);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: italic;
  font-family: var(--font-titulo);
  text-transform: none;
  color: #a8e6b8;
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-desc strong {
  color: #ffffff;
  font-weight: 600;
  font-style: normal;
}
.hero-desc-sub {
  display: block;
  margin-top: 8px;
  font-size: .96rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .01em;
}

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

.hero-stats {
  display: flex;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 28px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1;
}

.hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Hero form card */
.hero-form-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
  color: var(--cinza-texto);
  position: relative;
  z-index: 2;
}

.hero-form-card h3 {
  font-family: var(--font-titulo);
  font-size: 1.3rem;
  color: var(--preto-suave);
  margin-bottom: 6px;
}

.hero-form-card > p {
  font-size: .82rem;
  color: var(--verde);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.hero-form-card > p::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde);
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(29,140,53,.2);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(29,140,53,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(29,140,53,.08); }
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--cinza-texto);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--cinza-claro);
  border-radius: var(--radius);
  font-family: var(--font-corpo);
  font-size: .88rem;
  color: var(--preto-suave);
  transition: border-color var(--transition);
  background: var(--branco);
}

.form-control:focus {
  outline: none;
  border-color: var(--verde);
}

.form-control::placeholder {
  color: var(--cinza-medio);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e9b95' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-submit { width: 100%; margin-top: 4px; justify-content: center; }

.form-lgpd {
  text-align: center;
  font-size: .72rem;
  color: var(--cinza-medio);
  margin-top: 10px;
}

/* Hero trust bar */
.hero-trust {
  background: rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
}

.hero-trust-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}

.trust-item strong { color: var(--branco); }

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* 8. SERVICES SECTION (home)
   ============================================================ */
.services-home {
  background:
    linear-gradient(to bottom, rgba(6,22,10,.78) 0%, rgba(6,22,10,.92) 60%, rgba(4,14,7,.96) 100%),
    url('../img/servicos-bg.jpg') center 40%/cover no-repeat;
  background-color: #071610;
  padding-top: 52px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Subtle green radial glow top-left */
.services-home::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29,140,53,.15) 0%, transparent 65%);
  pointer-events: none;
}

.services-home .section-intro {
  margin-bottom: 40px;
  position: relative;
}

.services-home .section-tag {
  font-family: var(--font-headline);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.services-home .section-title {
  color: var(--branco);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.services-home .section-subtitle {
  color: rgba(255,255,255,.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.service-card {
  background: transparent;
  border-radius: 0;
  padding: 28px 36px 32px;
  box-shadow: none;
  transition: background .3s ease;
  display: flex;
  flex-direction: column;
  border: none;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

/* Top accent bar that grows on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--verde), #5fe87a);
  transition: right .4s ease;
}

.service-card:hover::before {
  right: 0;
}

.service-card:last-child {
  border-right: none;
}

.service-card:hover {
  background: rgba(255,255,255,.04);
  transform: none;
  box-shadow: none;
}

.service-card-num {
  font-family: var(--font-headline);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: rgba(95,232,122,.55);
  text-transform: none;
  margin-bottom: 14px;
  line-height: 1;
  transition: color .3s ease;
}

.service-card:hover .service-card-num {
  color: rgba(95,232,122,.9);
}

.service-card h3 {
  font-family: var(--font-titulo);
  font-size: 1.45rem;
  color: var(--branco);
  margin-bottom: 12px;
  transition: color .3s ease;
}

.service-card:hover h3 {
  color: #a8e6b8;
}

.service-card-tagline {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-corpo);
  font-style: italic;
  color: rgba(255,255,255,.65);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.service-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  flex: 1;
  margin-bottom: 20px;
}

/* "Ver detalhes" link style */
.service-card .btn-outline {
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.18);
  align-self: flex-start;
  font-size: .85rem;
  padding: 10px 22px;
  transition: all .3s ease;
}

.service-card .btn-outline:hover {
  background: rgba(29,140,53,.25);
  color: #a8e6b8;
  border-color: rgba(29,140,53,.5);
  transform: none;
  box-shadow: 0 0 20px rgba(29,140,53,.2);
}

/* 9. ABOUT / QUEM SOMOS (home strip)
   ============================================================ */
.about-home {
  background: var(--creme);
  padding-bottom: 24px;
}

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

.about-img {
  background: var(--creme);
  border-radius: 10px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--cinza-medio);
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img img.service-detail-icon {
  object-fit: contain;
  padding: clamp(28px, 6vw, 64px);
  background: radial-gradient(circle, rgba(29, 140, 53, .11), rgba(29, 140, 53, .02) 68%);
}

.about-quote {
  border-left: 3px solid var(--verde);
  padding-left: 20px;
  margin: 24px 0;
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--preto-suave);
  line-height: 1.5;
}

/* Stats inside about-text (other pages) */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-stat {
  background: var(--creme);
  border-radius: 8px;
  padding: 18px 20px;
}

.about-stat strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--verde);
}

.about-stat span {
  font-size: .8rem;
  color: var(--cinza-medio);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* About right panel (home page) */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 6px;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-stat-card {
  background: var(--branco);
  border: 1.5px solid var(--cinza-claro);
  border-radius: 12px;
  padding: 18px 20px 16px;
  text-align: center;
  transition: border-color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

/* Top accent line - always visible, not just on hover */
.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--verde), transparent);
  opacity: 1;
}

.about-stat-card:hover {
  border-color: rgba(29,140,53,.3);
  box-shadow: 0 6px 24px rgba(29,140,53,.1);
}

.about-stat-card strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.about-stat-card span {
  font-size: .7rem;
  color: var(--cinza-medio);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* License badges card - mesma linguagem dos stat cards */
.about-licenses {
  background: var(--branco);
  border: 1.5px solid var(--cinza-claro);
  border-radius: 12px;
  padding: 18px 20px 16px;
  position: relative;
  overflow: hidden;
}

.about-licenses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--verde), transparent);
}

.about-licenses-label {
  display: block;
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 12px;
}

.about-license-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1.5px solid var(--cinza-claro);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--cinza-texto);
  transition: border-color var(--transition);
}

.license-badge:hover { border-color: var(--verde); }

.license-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--verde);
  flex-shrink: 0;
}

/* 10. PROCESS
   ============================================================ */
.process {
  background: var(--creme);
  padding-top: 24px;
  padding-bottom: 52px;
}

.process .section-intro {
  margin-bottom: 32px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 1px;
  background: var(--cinza-claro);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--branco);
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-family: var(--font-titulo);
  font-size: 1.05rem;
  color: var(--preto-suave);
  margin-bottom: 8px;
}

.process-step p {
  font-size: .88rem;
  color: var(--cinza-texto);
  line-height: 1.65;
  margin-bottom: 8px;
}

.step-time {
  font-size: .75rem;
  font-weight: 600;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* 11. TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--verde-escuro);
  position: relative;
  overflow: hidden;
}

/* Radial glow top center */
.testimonials::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials .section-tag  { color: rgba(255,255,255,.5); font-style: italic; font-family: var(--font-corpo); text-transform: none; letter-spacing: 0; font-size: 1rem; }
.testimonials .section-title { color: var(--branco); }

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

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 36px 32px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

/* Bottom accent glow */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}

.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.testimonial-stars {
  color: #f5c842;
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card p::before { content: '\201C'; }
.testimonial-card p::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--branco);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--branco);
  display: block;
}

.author-role {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* 12. SECTORS
   ============================================================ */
.sectors {
  background: linear-gradient(160deg, var(--verde-escuro) 0%, #0d3a18 100%);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.sectors::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29,140,53,.15) 0%, transparent 65%);
  pointer-events: none;
}

.sectors .section-title { color: var(--branco); }
.sectors .section-tag   { color: rgba(255,255,255,.7); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.sector-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 24px;
  transition: background var(--transition);
}

.sector-item:hover {
  background: rgba(255,255,255,.12);
}

.sector-item strong {
  display: block;
  font-size: .95rem;
  color: var(--branco);
  margin-bottom: 6px;
}

.sector-item p {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* 13. FAQ
   ============================================================ */
.faq {
  background: var(--creme);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cinza-claro);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-titulo);
  font-size: 1.05rem;
  color: var(--preto-suave);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--verde); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--cinza-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--cinza-medio);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-question { color: var(--verde); }
.faq-item.open .faq-icon {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--branco);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: .95rem;
  color: var(--cinza-texto);
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* 14. CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  color: var(--branco);
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 {
  font-family: var(--font-titulo);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
  color: var(--branco);
}

.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 15. FOOTER
   ============================================================ */
.site-footer {
  background: var(--preto-suave);
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
  border-top: 3px solid var(--verde);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img { height: 36px; }

.footer-tagline {
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.5);
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--branco);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 6px;
  transition: background .2s ease, transform .2s ease;
}

.footer-wa:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

.footer-col h4 {
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--branco); }

.footer-licenses-text {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

.footer-unit {
  margin-bottom: 16px;
}

.footer-unit strong {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 3px;
}

.footer-unit span {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

.footer-unit a {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-unit a:hover { color: var(--branco); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

/* 16. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--branco);
}

/* 17. BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--cinza-claro);
  background: var(--branco);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--cinza-medio);
}

.breadcrumb-list a {
  color: var(--cinza-medio);
  transition: color var(--transition);
}

.breadcrumb-list a:hover { color: var(--verde); }

.breadcrumb-sep { opacity: .5; }

/* 18. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde) 100%);
  color: var(--branco);
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-tag {
  font-family: var(--font-headline);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
  display: block;
}

.page-hero h1 {
  font-family: var(--font-titulo);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--branco);
  max-width: 680px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  line-height: 1.7;
}

/* 19. LICENSES GRID
   ============================================================ */
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.license-card {
  background: var(--creme);
  border-radius: 8px;
  padding: 24px;
  border-left: 4px solid var(--verde);
}

.license-card h4 {
  font-family: var(--font-titulo);
  font-size: 1rem;
  color: var(--preto-suave);
  margin-bottom: 8px;
}

.license-card p {
  font-size: .87rem;
  color: var(--cinza-texto);
  line-height: 1.65;
}

.license-icon-image {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
}

/* 20. INSURANCE / COBERTURA
   ============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.coverage-card {
  background: var(--branco);
  border: 1.5px solid var(--cinza-claro);
  border-radius: 10px;
  padding: 28px;
}

.coverage-tag {
  font-family: var(--font-headline);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--verde);
  background: rgba(29,140,53,.08);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.coverage-card h4 {
  font-family: var(--font-titulo);
  font-size: 1rem;
  color: var(--preto-suave);
  margin-bottom: 8px;
}

.coverage-card p {
  font-size: .87rem;
  color: var(--cinza-texto);
  line-height: 1.65;
}

/* 21. FEATURE LIST
   ============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--cinza-claro);
  font-size: .95rem;
  color: var(--cinza-texto);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--verde);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* 22. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form-full .form-group { margin-bottom: 16px; }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-sidebar {}

.contact-channel {
  background: var(--creme);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 16px;
}

.contact-channel h4 {
  font-family: var(--font-titulo);
  font-size: 1rem;
  color: var(--preto-suave);
  margin-bottom: 14px;
}

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

.unit-card {
  background: var(--creme);
  border-radius: 8px;
  padding: 24px;
}

.unit-badge {
  font-family: var(--font-headline);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--verde);
  color: var(--branco);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.unit-card h3 {
  font-family: var(--font-titulo);
  font-size: 1.05rem;
  color: var(--preto-suave);
  margin-bottom: 8px;
}

.unit-card p, .unit-card a {
  font-size: .85rem;
  color: var(--cinza-texto);
  line-height: 1.6;
  display: block;
}

.unit-card a:hover { color: var(--verde); }

/* Map tabs */
.map-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.map-tab {
  padding: 9px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--cinza-claro);
  font-size: .83rem;
  font-weight: 500;
  color: var(--cinza-texto);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--branco);
}

.map-tab:hover,
.map-tab.active {
  background: var(--verde);
  color: var(--branco);
  border-color: var(--verde);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 320px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

.map-container iframe.active { display: block; }

/* 23. OBRIGADO PAGE
   ============================================================ */
.obrigado-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--creme);
}

.obrigado-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: var(--branco);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.obrigado-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(29,140,53,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.obrigado-card h1 {
  font-family: var(--font-titulo);
  font-size: 1.8rem;
  color: var(--preto-suave);
  margin-bottom: 12px;
}

.obrigado-card p {
  color: var(--cinza-texto);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* 24. REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.services-grid .reveal:nth-child(1) { transition-delay: .0s; }
.services-grid .reveal:nth-child(2) { transition-delay: .1s; }
.services-grid .reveal:nth-child(3) { transition-delay: .2s; }

.testimonials-grid .reveal:nth-child(1) { transition-delay: .0s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: .12s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: .24s; }

.about-stat-grid .reveal:nth-child(1) { transition-delay: .05s; }
.about-stat-grid .reveal:nth-child(2) { transition-delay: .12s; }
.about-stat-grid .reveal:nth-child(3) { transition-delay: .19s; }
.about-stat-grid .reveal:nth-child(4) { transition-delay: .26s; }

.process-steps .reveal:nth-child(1) { transition-delay: .0s; }
.process-steps .reveal:nth-child(2) { transition-delay: .1s; }
.process-steps .reveal:nth-child(3) { transition-delay: .2s; }
.process-steps .reveal:nth-child(4) { transition-delay: .3s; }

/* 25. ROUTES SECTION (home)
   ============================================================ */
.routes-section {
  background: var(--branco);
  padding: 48px 0;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}

.routes-content > p {
  color: var(--cinza-texto);
  max-width: 420px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: .93rem;
}

.routes-list {
  display: flex;
  flex-direction: column;
}

.route-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--cinza-claro);
}

.route-item:first-child {
  border-top: 1px solid var(--cinza-claro);
}

.route-from-to {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.route-origin {
  font-size: .88rem;
  color: var(--cinza-medio);
}

.route-arrow {
  color: var(--verde);
  font-weight: 700;
  font-size: 1rem;
}

.route-dest {
  font-weight: 700;
  color: var(--preto-suave);
  font-family: var(--font-titulo);
  font-size: 1.08rem;
}

.route-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.route-meta span {
  font-size: .8rem;
  color: var(--verde);
  font-weight: 600;
}

/* Route diagram */
.routes-diagram {
  background: linear-gradient(160deg, var(--creme) 0%, #e8f0eb 100%);
  border: 1.5px solid var(--cinza-claro);
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 88px;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}

.route-node {
  display: flex;
  align-items: center;
  gap: 16px;
}

.route-node-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  flex-shrink: 0;
  color: var(--branco);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.route-node--dark .route-node-dot {
  background: linear-gradient(135deg, var(--verde-escuro), #0d4a1c);
}

.route-node--light .route-node-dot {
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
}

.route-node-info strong {
  display: block;
  font-weight: 700;
  color: var(--preto-suave);
  font-size: .92rem;
  margin-bottom: 2px;
}

.route-node-info span {
  font-size: .76rem;
  color: var(--cinza-medio);
}

.route-connector {
  display: flex;
  align-items: center;
  padding: 12px 0 12px 27px;
  margin-left: 25px;
  border-left: 2px dashed rgba(29,140,53,.25);
  min-height: 52px;
}

.route-connector-tag {
  background: var(--branco);
  border: 1.5px solid rgba(29,140,53,.2);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--verde-escuro);
  box-shadow: 0 2px 8px rgba(29,140,53,.08);
}

/* 25. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .routes-grid { grid-template-columns: 1fr; }
  .routes-diagram { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }

  /* sobre.html */
  .sobre-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .sobre-stats-strip { grid-template-columns: repeat(3, 1fr); }
  .historia-grid { grid-template-columns: 1fr; gap: 32px; }
  .cert-layout { grid-template-columns: 1fr; gap: 32px; }
  .sobre-frota-stats { grid-template-columns: repeat(2, 1fr); }
  .sobre-testimonials { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .trust-item { white-space: normal; font-size: .74rem; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8,20,11,.97);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--cinza-claro);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    padding: 8px 0;
  }

  .nav-menu.open { display: flex; }

  .nav-link {
    padding: 14px 24px;
    width: 100%;
  }

  .nav-link::after { display: none; }

  .nav-cta {
    margin: 8px 24px;
    width: calc(100% - 48px);
    text-align: center;
    justify-content: center;
    padding: 12px;
  }

  .nav-toggle { display: flex; }

  .site-header { position: fixed; }

  .services-grid { grid-template-columns: 1fr; border-top: none; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 28px 24px; }
  .service-card:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .licenses-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }

  .hero { padding: 88px 0 64px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-pills { justify-content: center; }

  /* sobre.html mobile */
  .sobre-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sobre-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .cert-cards { grid-template-columns: 1fr 1fr; }
  .sobre-frota-stats { grid-template-columns: repeat(2, 1fr); }
  .sobre-testimonials { grid-template-columns: 1fr; }

  /* svc-list mobile */
  .svc-list { gap: 0; }
  .svc-row { flex-direction: column; gap: 16px; padding: 28px 0; }
  .svc-num { font-size: 2.8rem; }
  .svc-guarantees { grid-template-columns: repeat(2, 1fr); }

  /* footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 82px 0 56px; }
  .hero-pills { gap: 6px; }
  .hero-pill { font-size: .73rem; padding: 4px 10px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
  .sobre-stats-strip { grid-template-columns: 1fr 1fr; }
  .cert-cards { grid-template-columns: 1fr; }
  .svc-guarantees { grid-template-columns: 1fr; }
  .svc-tags { flex-wrap: wrap; }
}

/* ============================================================
   26. MODERN DYNAMIC ENHANCEMENTS
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-escuro), var(--verde), #5fe87a);
  z-index: 9999;
  width: 0%;
  transition: width .08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── Service card icons ────────────────────────────── */
.service-icon {
  width: 54px;
  height: 54px;
  display: block;
  color: rgba(255,255,255,.32);
  margin-bottom: 22px;
  transition: color .4s ease, transform .45s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  color: rgba(95,232,122,.8);
  transform: translateY(-6px) scale(1.1);
}

.service-icon-img {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 22px;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
  background: transparent !important;
}

.service-card:hover .service-icon-img {
  transform: translateY(-6px) scale(1.05);
}

/* ── Trust bar icons ────────────────────────────────── */
.trust-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(255,255,255,.45);
  transition: color .3s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}

.trust-item {
  gap: 8px;
}

.trust-item:hover .trust-icon {
  color: #5fe87a;
  transform: scale(1.3) rotate(-10deg);
}

/* ── Process step - número troca por ícone no hover ─── */
.step-num {
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease;
}

.step-num-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: opacity .22s ease, transform .22s ease;
}

.step-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.55) rotate(-15deg);
  transition: opacity .25s ease, transform .32s cubic-bezier(.34,1.56,.64,1);
}

.step-icon svg {
  width: 26px;
  height: 26px;
  color: var(--branco);
  stroke: currentColor;
}

.process-step:hover .step-num {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 36px rgba(29,140,53,.45);
}

.process-step:hover .step-num-label {
  opacity: 0;
  transform: scale(.55) rotate(15deg);
}

.process-step:hover .step-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ── Sector item icons ──────────────────────────────── */
.sector-icon {
  width: 32px;
  height: 32px;
  display: block;
  color: rgba(255,255,255,.25);
  margin-bottom: 14px;
  transition: color .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}

.sector-icon-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: .62;
  transition: opacity .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}

.sector-item:hover .sector-icon {
  color: rgba(95,232,122,.85);
  transform: translateY(-5px) scale(1.15);
}

.sector-item:hover .sector-icon-image {
  opacity: .95;
}

.sector-item {
  transition: background var(--transition),
              transform .3s ease,
              border-color .3s ease;
}

.sector-item:hover {
  transform: translateY(-3px);
  border-color: rgba(95,232,122,.2);
}

/* ── Route item - arrow slides right on hover ────────── */
.route-arrow {
  display: inline-block;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.route-item:hover .route-arrow {
  transform: translateX(7px);
}

/* ── WhatsApp float pulse ring ───────────────────────── */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,.55);
  animation: wa-pulse-ring 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse-ring {
  0%   { transform: scale(1);    opacity: .85; }
  100% { transform: scale(1.6);  opacity: 0;   }
}

/* ── Form input focus glow ───────────────────────────── */
.form-control:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(29,140,53,.12);
}

/* ── Btn arrow micro-animation ───────────────────────── */
.btn svg.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
}

.btn:hover svg.btn-arrow {
  transform: translateX(4px);
}

/* ============================================================
   27. REFINAMENTOS ANTI-TEMPLATE
   ============================================================ */

/* Títulos maiores - quebra a uniformidade "template" */
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.018em;
}

/* Tag menor para contraste mais dramático com o título */
.section-tag {
  font-size: .68rem;
  letter-spacing: .2em;
}

/* Rotas: headline proporcional, cabe na viewport sem scroll */
.routes-content .section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

/* CTA band: headline maior */
.cta-band h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ── Marquee strip ──────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--verde-escuro);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 13px 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-family: var(--font-headline);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}

.marquee-item strong {
  color: rgba(255,255,255,.72);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--verde);
  opacity: .8;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Grain sobre a seção de serviços ────────────────── */
.services-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.055'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.services-home .container { position: relative; z-index: 1; }

/* ── Testimonials: aspas decorativas grandes ────────── */
.testimonial-card { position: relative; }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 18px;
  font-size: 8rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--branco);
  opacity: .045;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(95,232,122,.2) !important;
}

/* ── About blockquote: tratamento editorial ─────────── */
.about-quote {
  padding: 22px 28px !important;
  margin: 28px 0 !important;
  background: rgba(29,140,53,.07) !important;
  border-left: 4px solid var(--verde) !important;
  border-radius: 0 8px 8px 0 !important;
  font-size: 1.1rem !important;
  line-height: 1.58 !important;
}

/* ── About right: "25" decorativo de fundo ──────────── */
.about-right { position: relative; }

.about-right::before {
  content: '25';
  position: absolute;
  top: -30px;
  right: -16px;
  font-family: var(--font-headline);
  font-size: 11rem;
  font-weight: 700;
  color: var(--verde);
  opacity: .045;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.06em;
  user-select: none;
}

.about-stat-grid, .about-licenses { position: relative; z-index: 1; }

/* ── Hero stats: números mais impactantes ───────────── */
.hero-stat strong { font-size: 2.5rem !important; }

/* ── CTA band: glows decorativos ───────────────────── */
.cta-band { position: relative; overflow: hidden; }

.cta-band::before {
  content: '';
  position: absolute;
  top: -80%;
  left: -10%;
  width: 50%;
  height: 260%;
  background: radial-gradient(ellipse, rgba(255,255,255,.07) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band > .container { position: relative; z-index: 1; }

/* ── Sector items: borda esquerda colorida no hover ─── */
.sector-item {
  border-left: 3px solid transparent !important;
  transition: background var(--transition), transform .3s ease,
              border-color .3s ease, border-left-color .3s ease !important;
}

.sector-item:hover { border-left-color: var(--verde) !important; }

/* ── Nav: link ativo em branco ──────────────────────── */
.nav-link.active { color: var(--verde); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .routes-content .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .cta-band h2 { font-size: clamp(2rem, 7vw, 2.8rem) !important; }
  .marquee-strip { padding: 11px 0; }
  .about-right::before { font-size: 7rem; right: 0; }
}

/* ============================================================
   28. REDESIGN ANTI-TEMPLATE - ETAPA 2
   ============================================================ */

/* ── Process: mantém círculos originais, só ajustes mínimos ── */

/* ── Testimonials: layout editorial assimétrico ─────── */
/* Card 1 (destaque, largo): col 1-2, linha 1             */
/* Card 2 (segundo): col 1-2, linha 2                     */
/* Card 3 (alto): col 3, linhas 1-2                       */

.testimonials-grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: stretch;
}

.testimonial-card:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.testimonial-card:nth-child(1) p {
  font-size: 1.06rem;
  line-height: 1.82;
}

.testimonial-card:nth-child(2) {
  grid-column: 1 / 3;
  grid-row: 2;
}

.testimonial-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── About blockquote: tratamento ainda mais editorial ── */
.about-quote {
  font-size: 1.18rem !important;
  font-family: var(--font-corpo) !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  position: relative !important;
}

.about-quote::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  left: 16px;
  font-size: 4.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--verde);
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}

/* ── Service cards: hover mais dramático ─────────────── */
.service-card:hover {
  transform: translateY(-8px) !important;
}

/* ── Routes diagram: nodes com visual mais forte ─────── */
.route-node-dot {
  font-weight: 800 !important;
  letter-spacing: .04em !important;
}

/* Rotas desktop: sem override adicional, mantém o clamp base */

/* ── Setores: título proporcional + hover dramático ─── */

/* Reduz o título da seção que estava enorme */
.sectors .section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: .75rem;
}

/* Reduz o padding da seção */
.sectors {
  padding: 52px 0;
}

/* Texto descritivo mais compacto */
.sectors .section-subtitle {
  font-size: .95rem;
  line-height: 1.65;
}

/* Hover: fill verde completo - card "acende" */
.sector-item {
  transition: background .28s ease, border-color .28s ease,
              transform .3s ease, box-shadow .3s ease !important;
  border-left: none !important; /* remove o border-left da seção 27 */
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Barra de acento que sobe do fundo no hover */
.sector-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.sector-item:hover::before {
  transform: scaleX(1);
}

.sector-item:hover {
  background: rgba(29,140,53,.22) !important;
  border-color: rgba(95,232,122,.35) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.35) !important;
}

/* Ícone: fica mais brilhante e verde no hover */
.sector-item:hover .sector-icon {
  color: rgba(95,232,122,.95) !important;
  transform: translateY(-4px) scale(1.18) !important;
}

/* Título: branco cheio */
.sector-item:hover strong {
  color: #fff;
}

/* Descrição: mais legível */
.sector-item:hover p {
  color: rgba(255,255,255,.85);
}

/* ── Responsive Section 28 ───────────────────────────── */
@media (max-width: 900px) {
  /* Testimonials: stacked */
  .testimonials-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }
}

/* ===================== SECTION 29: Página Serviços redesign ===================== */

.svc-list {
  display: flex;
  flex-direction: column;
}

.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 32px 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--cinza-claro);
  position: relative;
  transition: background .25s ease;
}

.svc-row:last-child { border-bottom: none; }
.svc-row:first-child { padding-top: 0; }

.svc-row::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--verde);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}

.svc-row:hover::before { transform: scaleY(1); }

.svc-num {
  font-family: var(--font-titulo);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--verde);
  opacity: .18;
  line-height: 1;
  padding-top: 6px;
  transition: opacity .25s ease;
  user-select: none;
}

.svc-row:hover .svc-num { opacity: .55; }

.svc-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--preto-suave);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.svc-desc {
  font-size: .92rem;
  line-height: 1.72;
  color: var(--cinza-texto);
  max-width: 620px;
  margin-bottom: 16px;
}

.svc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.svc-tags span {
  background: rgba(29,140,53,.07);
  color: var(--verde);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .77rem;
  font-weight: 600;
}

.svc-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 148px;
  padding-top: 4px;
}

.svc-guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.svc-guarantee-item {
  padding: 20px 16px;
  border-right: 1px solid var(--cinza-claro);
}

.svc-guarantee-item:last-child { border-right: none; }

.svc-guarantee-item strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1rem;
  color: var(--preto-suave);
  margin-bottom: 4px;
}

.svc-guarantee-item span {
  font-size: .8rem;
  color: var(--cinza-texto);
}

@media (max-width: 900px) {
  .svc-row {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .svc-actions {
    grid-column: 1 / 3;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .svc-num { font-size: 2rem; }
  .svc-guarantees { grid-template-columns: repeat(2, 1fr); }
  .svc-guarantee-item:nth-child(2) { border-right: none; }
  .svc-guarantee-item:nth-child(3) { border-right: 1px solid var(--cinza-claro); }
  .svc-guarantee-item { border-bottom: 1px solid var(--cinza-claro); }
  .svc-guarantee-item:nth-child(3),
  .svc-guarantee-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-num { font-size: 1.8rem; padding-top: 0; }
  .svc-guarantees { grid-template-columns: 1fr 1fr; }
}

/* ===================== SECTION 30: Unidades (sobre.html) ===================== */

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.unit-card {
  background: var(--branco);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--cinza-claro);
  transition: box-shadow .25s ease, transform .25s ease;
}

.unit-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-4px);
}

.unit-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--verde);
  background: rgba(29,140,53,.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.unit-card h3 {
  font-family: var(--font-titulo);
  font-size: 1.35rem;
  color: var(--preto-suave);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.unit-card p {
  font-size: .88rem;
  line-height: 1.68;
  color: var(--cinza-texto);
}

@media (max-width: 700px) {
  .units-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===================== SECTION 31: Sobre page ===================== */

/* Hero sobre */
.sobre-hero {
  background: var(--branco);
  padding: 72px 0 0;
  border-bottom: 1px solid var(--cinza-claro);
}

.sobre-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 56px;
}

.sobre-hero-title {
  font-family: var(--font-titulo);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--preto-suave);
  letter-spacing: -.035em;
  line-height: 1.06;
  margin-bottom: 20px;
}

.sobre-hero-sub {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--cinza-texto);
  max-width: 440px;
}

.sobre-hero-quote {
  display: flex;
  align-items: center;
}

.sobre-hero-quote blockquote {
  font-family: var(--font-corpo);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--preto-suave);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 3px solid var(--verde);
  position: relative;
}

/* Stats strip */
.sobre-stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--cinza-claro);
}

.sobre-stat {
  padding: 24px 20px;
  border-right: 1px solid var(--cinza-claro);
  text-align: center;
}

.sobre-stat:last-child { border-right: none; }

.sobre-stat strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--verde);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.sobre-stat span {
  font-size: .75rem;
  color: var(--cinza-texto);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 500;
}

/* História */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.historia-text p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--cinza-texto);
}

.historia-fact {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--cinza-claro);
}

.historia-fact:first-child { border-top: 1px solid var(--cinza-claro); }

.historia-fact-num {
  font-family: var(--font-titulo);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--verde);
  opacity: .3;
  line-height: 1;
  min-width: 32px;
  padding-top: 2px;
  transition: opacity .25s;
}

.historia-fact:hover .historia-fact-num { opacity: .7; }

.historia-fact strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1rem;
  color: var(--preto-suave);
  margin-bottom: 6px;
}

.historia-fact p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--cinza-texto);
  margin: 0;
}

/* Frota */
.sobre-frota {
  background:
    linear-gradient(135deg, rgba(6,22,10,.92) 0%, rgba(16,56,24,.88) 100%),
    url('../img/frota-bg.jpg') center/cover no-repeat;
  padding: 72px 0;
}

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

.sobre-frota-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  overflow: hidden;
}

.frota-stat {
  padding: 32px 28px;
  background: rgba(255,255,255,.04);
  transition: background .25s;
}

.frota-stat:hover { background: rgba(29,140,53,.12); }

.frota-stat strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #a8f5c0;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.frota-stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Certificações */
.cert-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cert-highlight {
  display: flex;
  gap: 14px;
  align-items: start;
  background: rgba(29,140,53,.06);
  border: 1px solid rgba(29,140,53,.18);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 28px;
  color: var(--verde);
}

.cert-highlight svg { flex-shrink: 0; margin-top: 2px; }

.cert-highlight strong {
  display: block;
  font-size: .95rem;
  color: var(--preto-suave);
  margin-bottom: 4px;
}

.cert-highlight p {
  font-size: .83rem;
  color: var(--cinza-texto);
  margin: 0;
  line-height: 1.55;
}

.cert-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cert-card {
  background: var(--branco);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--cinza-claro);
  border-bottom: 3px solid var(--cinza-claro);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde), #5fe87a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.cert-card:hover::before { transform: scaleX(1); }

.cert-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  transform: translateY(-5px);
  border-color: rgba(29,140,53,.2);
}

.cert-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(29,140,53,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--verde);
  transition: background .3s ease, transform .3s ease;
}

.cert-card:hover .cert-icon-wrap {
  background: rgba(29,140,53,.15);
  transform: scale(1.08);
}

.cert-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.cert-icon-image {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.cert-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--verde);
  background: rgba(29,140,53,.08);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.cert-badge-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--verde);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.cert-card h4 {
  font-family: var(--font-titulo);
  font-size: 1.05rem;
  color: var(--preto-suave);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.cert-card p {
  font-size: .83rem;
  line-height: 1.65;
  color: var(--cinza-texto);
}

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

.seguro-card {
  background: var(--branco);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--cinza-claro);
  transition: box-shadow var(--transition), transform var(--transition);
}

.seguro-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-3px);
}

.seguro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}

.seguro-tag {
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--verde);
  background: rgba(29,140,53,.08);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.seguro-val {
  font-size: .72rem;
  color: var(--cinza-medio);
  font-family: var(--font-corpo);
  white-space: nowrap;
}

.seguro-card h4 {
  font-family: var(--font-titulo);
  font-size: 1rem;
  font-weight: 700;
  color: var(--preto-suave);
  margin: 0 0 8px;
}

.seguro-card p {
  font-size: .83rem;
  color: var(--cinza-texto);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials sobre */
.sobre-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* Responsive sobre */
@media (max-width: 1000px) {
  .sobre-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .sobre-stats-strip { grid-template-columns: repeat(3, 1fr); }
  .sobre-stat:nth-child(3) { border-right: none; }
  .sobre-stat:nth-child(4) { border-top: 1px solid var(--cinza-claro); }
  .sobre-stat:nth-child(5) { border-top: 1px solid var(--cinza-claro); border-right: none; }
  .historia-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-frota-inner { grid-template-columns: 1fr; gap: 40px; }
  .cert-layout { grid-template-columns: 1fr; gap: 48px; }
  .seguros-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .sobre-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .sobre-stat:nth-child(2) { border-right: none; }
  .sobre-stat:nth-child(3) { border-right: 1px solid var(--cinza-claro); border-top: 1px solid var(--cinza-claro); }
  .sobre-stat:nth-child(5) { border-right: none; border-top: 1px solid var(--cinza-claro); }
  .cert-cards { grid-template-columns: 1fr; }
  .seguros-grid { grid-template-columns: 1fr; }
  .sobre-frota-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== SECTION 32: INTERACTIVE POLISH ===================== */

/* ── Botões: press feel no :active ───────────────────── */
.btn:active {
  transform: scale(0.96) !important;
  transition: transform .1s ease !important;
}

.nav-cta:active { transform: scale(0.96) !important; }

/* ── License card: hover lift + top bar ─────────────── */
.license-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
  overflow: hidden;
}

.license-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--verde), #5fe87a);
  transition: right .38s ease;
}

.license-card:hover::after { right: 0; }

.license-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(29,140,53,.13);
  border-color: transparent;
}

/* ── Coverage card: hover lift + green glow ─────────── */
.coverage-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(29,140,53,.12);
  border-color: rgba(29,140,53,.28);
}

/* ── Feature list: nudge on hover ───────────────────── */
.feature-list li {
  transition: padding-left .2s ease, color .2s ease;
}

.feature-list li:hover {
  padding-left: 6px;
  color: var(--preto-suave);
}

/* ── Process steps on inner pages: scale num on hover ─ */
.process-step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(29,140,53,.35);
}

/* ── Inner service page cards: icon sizing ───────────── */
.service-card .card-icon {
  width: 42px;
  height: 42px;
  display: block;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
  transition: color .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}

.service-card:hover .card-icon {
  color: rgba(95,232,122,.8);
  transform: translateY(-5px) scale(1.08);
}

.service-card .card-icon-image {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: .42;
  transition: opacity .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}

.service-card:hover .card-icon-image {
  opacity: .88;
  transform: translateY(-5px) scale(1.08);
}

/* ── Sobre hero blockquote: aspas decorativas ──────────── */
.sobre-hero-quote blockquote::before {
  content: '\201C';
  position: absolute;
  top: -22px;
  left: 16px;
  font-size: 6rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--verde);
  opacity: .1;
  pointer-events: none;
}

/* ── WhatsApp float: elevação extra no hover ─────────── */
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px) !important;
}

@media (max-width: 600px) {
  .license-card:hover { transform: none; }
  .coverage-card:hover { transform: none; }
}

/* ============================================================
   MOTION PRINCIPLES
   Page loader · Skeleton · Lazy images · Scroll-reveal · Dots
   ============================================================ */

/* ── Page Loader ─────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--preto-suave);
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader--done {
  opacity: 0;
  visibility: hidden;
}

.page-loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--verde);
  animation: loader-fill .9s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes loader-fill {
  0%   { width: 0;    opacity: 1; }
  70%  { width: 85%;  opacity: 1; }
  100% { width: 100%; opacity: 0; }
}

/* ── Scroll Progress Bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--verde), #5FE87A);
  z-index: 9998;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  transition: width .1s linear;
}

/* ── Skeleton Shimmer ────────────────────────────────────── */
.skeleton-wrap {
  display: inline-block;
  position: relative;
  background: var(--cinza-claro);
  border-radius: inherit;
  overflow: hidden;
}

.skeleton-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.6) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  opacity: 1;
  transition: opacity .3s ease;
}

.skeleton-wrap.skeleton-done::after {
  animation: none;
  opacity: 0;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Skeleton for card text lines (optional use) */
.skeleton-line {
  display: block;
  height: 1em;
  border-radius: 4px;
  background: var(--cinza-claro);
  overflow: hidden;
  position: relative;
}
.skeleton-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

/* ── Lazy Image Fade (só dentro do skeleton-wrap) ────────── */
.skeleton-wrap img.img-lazy {
  opacity: 0;
  transition: opacity .45s ease;
}

.skeleton-wrap img.img-loaded {
  opacity: 1;
}

/* ── Motion Reveal System ────────────────────────────────── */
.motion-ready {
  opacity: 0;
  transition:
    opacity .55s cubic-bezier(.22,1,.36,1),
    transform .55s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

/* Directions */
.motion-up    { transform: translateY(32px); }
.motion-left  { transform: translateX(-36px); }
.motion-right { transform: translateX(36px); }
.motion-scale { transform: scale(.94); }

/* Revealed state */
.motion-ready.motion-in {
  opacity: 1;
  transform: none !important;
}

/* Stagger - children get delay via JS inline style */
.services-grid .service-card,
.about-stat-grid .about-stat-card,
.process-steps .process-step,
.sectors-grid .sector-item,
.certs-grid .cert-card,
.seguros-grid .seguro-card,
.testimonials-grid .testimonial-card,
.sobre-testimonials .testimonial-card {
  transition-duration: .5s;
}

/* ── Section Progress Dots ───────────────────────────────── */
.section-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.section-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 1.5px solid rgba(255,255,255,.2);
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
  display: block;
}

.section-dot.active {
  background: var(--verde);
  border-color: var(--verde);
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .section-dots { display: none; }

  .motion-up    { transform: translateY(20px); }
  .motion-left  { transform: translateX(-20px); }
  .motion-right { transform: translateX(20px); }
}
