/* ============================================
   Despachante Skora — landing page
   Palette: navy / white / soft blue
   ============================================ */

:root {
  --navy: #1B3A6B;
  --navy-deep: #112647;
  --navy-soft: #2A5396;
  --white: #FFFFFF;
  --sky: #F0F4FA;
  --sky-2: #E3ECF7;
  --ink: #102036;
  --muted: #5A6B82;
  --line: #D9E3F0;
  --wpp: #25D366;
  --wpp-dark: #1DAA52;
  --shadow-md: 0 8px 24px rgba(20, 40, 90, 0.08);
  --shadow-lg: 0 18px 44px rgba(20, 40, 90, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }


html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 10px;
  padding: 8px 28px;
  height: 56px;
  flex: 0 0 auto;
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}
.brand-logo-sm {
  height: 20px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}
.brand-text em {
  font-style: normal;
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-top: 2px;
}

.brand-light strong, .brand-light em { color: #fff; }
.brand-light .brand-mark { background: #fff; }

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 2px;
  position: relative;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(27, 58, 107, 0.28);
}

.btn-wpp {
  background: var(--wpp);
  color: #fff;
}
.btn-wpp:hover {
  background: var(--wpp-dark);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 64px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.06), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(255,255,255,0.04), transparent 40%);
  pointer-events: none;
}
.hero > .container { position: relative; }

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

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-soft);
  padding: 6px 12px;
  background: var(--sky);
  border-radius: 999px;
}
.hero .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #b9cbe6;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  text-wrap: pretty;
}
.hero h1 .hl { color: #ffd87a; }

.hero .lede {
  font-size: 18px;
  line-height: 1.6;
  color: #cdd9ee;
  max-width: 56ch;
  margin: 0 0 28px;
  font-style: italic;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero-badges li {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid rgba(255,255,255,0.18);
}
.hero-badges strong {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}
.hero-badges span {
  font-size: 13px;
  color: #b9cbe6;
  margin-top: 2px;
}

/* Hero photo */
.hero-photo {
  position: relative;
}
.photo-frame {
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.photo-tall { aspect-ratio: 4 / 5; }

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

/* Hero — duas fotos empilhadas com offset */
.hero-photo-main {
  aspect-ratio: 4 / 3;
}


/* Sobre — grid 2x2 */
.sobre-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sobre-photo-grid .photo-frame {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.photo-placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      var(--sky) 0 10px,
      var(--sky-2) 10px 20px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  border: 2px dashed rgba(27,58,107,0.25);
}
.ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
}
.ph-inner svg { color: var(--navy); opacity: 0.55; }
.ph-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ph-sub {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

.hero-tag {
  position: absolute;
  bottom: -22px;
  left: 24px;
  background: #fff;
  color: var(--ink);
  padding: 14px 22px 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero-tag-logo {
  background: var(--navy);
  border-radius: 8px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
}
.hero-tag strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.hero-tag span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

/* ============================================
   Section base
   ============================================ */
.section {
  padding: 96px 0;
}
.section-head {
  margin: 0 0 56px;
}
.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--navy-deep);
  margin: 14px 0 14px;
  text-wrap: balance;
}
.section-head .hl { color: var(--navy-soft); }
.section-head .sub {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  font-style: italic;
}

/* ============================================
   Sobre
   ============================================ */
.sobre {
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.sobre-photo .photo-frame { box-shadow: var(--shadow-md); }
.sobre-copy h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--navy-deep);
  margin: 14px 0 22px;
  text-wrap: pretty;
}
.sobre-copy p {
  color: #36475e;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 60ch;
}
.sobre-copy .btn { margin-top: 18px; }

/* ============================================
   Stats bar
   ============================================ */
.stats-bar {
  background: var(--navy);
  color: #fff;
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #b9cbe6;
  letter-spacing: 0.04em;
}

/* ============================================
   Processo — timeline
   ============================================ */
.processo {
  background: var(--sky);
}

.timeline-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.timeline-steps::before {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(27,58,107,0.28);
}
.timeline-step h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-deep);
  margin: 0 0 10px;
}
.timeline-step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.processo-cta {
  text-align: center;
  margin-top: 0;
}

/* Traveling light on timeline */
.tl-beam {
  position: absolute;
  top: 21px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  pointer-events: none;
  z-index: 0;
}
.tl-beam::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.95),
    0 0 8px 4px rgba(90,155,255,0.65),
    0 0 18px 8px rgba(90,155,255,0.25);
  animation: tl-beam-travel 5s ease-in-out infinite;
}
@keyframes tl-beam-travel {
  0%   { left: 0%;    opacity: 0; }
  4%   { left: 0%;    opacity: 1; }
  12%  { left: 0%;    opacity: 1; }
  28%  { left: 33.3%; opacity: 1; }
  36%  { left: 33.3%; opacity: 1; }
  52%  { left: 66.6%; opacity: 1; }
  60%  { left: 66.6%; opacity: 1; }
  76%  { left: 100%;  opacity: 1; }
  86%  { left: 100%;  opacity: 0; }
  87%  { left: 0%;    opacity: 0; }
  100% { left: 0%;    opacity: 0; }
}

/* ============================================
   Docs — checklist
   ============================================ */
.docs { background: #fff; }

.doclist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.doclist-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 40px 28px 0;
  border-bottom: 1px solid var(--line);
}
.doclist-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.doclist-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
}
.doclist-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.doclist-check {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.doclist-body h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-deep);
  margin: 0 0 6px;
}
.doclist-body p {
  font-size: 14.5px;
  color: #36475e;
  line-height: 1.6;
  margin: 0;
}
.doclist-muted { color: var(--muted); font-weight: 400; font-size: 0.88em; }

.car-banner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  color: #fff;
}
.car-banner-icon {
  flex: 0 0 68px;
  height: 68px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.car-banner h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 6px;
}
.car-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* Aviso */
.aviso {
  position: relative;
  margin: 24px 0 0;
  border: 2px dashed rgba(27,58,107,0.35);
  border-radius: 6px;
  padding: 22px 28px 20px;
  background: transparent;
}
.aviso-tag {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #fff;
  padding: 0 8px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.aviso-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy-deep);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aviso-heading span {
  font-size: 18px;
  color: var(--navy-soft);
  line-height: 1;
}
.aviso-items {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin: 0 0 10px;
}
.aviso-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Depoimentos
   ============================================ */
.depoimentos { background: #fff; }

.dep-carousel {
  position: relative;
  padding: 0 56px;
}
.dep-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  scrollbar-width: none;
}
.dep-track::-webkit-scrollbar { display: none; }

.dep-card {
  flex: 0 0 calc((100% - 24px) / 2);
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dep-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dep-card img {
  width: 100%;
  height: auto;
  display: block;
}

.dep-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background .2s ease, color .2s ease, transform .15s ease;
  z-index: 2;
}
.dep-arrow:hover { background: #4285F4; color: #fff; border-color: #4285F4; }
.dep-arrow:active { transform: translateY(-50%) scale(.96); }
.dep-prev { left: 0; }
.dep-next { right: 0; }

.dep-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 8px 0 0;
}
.dep-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(27,58,107,0.25);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.dep-dots button.active {
  background: #4285F4;
  transform: scale(1.25);
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: #fff; }
.faq-wrap { max-width: 880px; }
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--sky);
  border: 1px solid var(--sky-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--navy-soft); }
.faq-item.open { background: #fff; border-color: var(--navy); box-shadow: var(--shadow-md); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-deep);
}
.faq-q svg {
  flex: 0 0 22px;
  color: var(--navy);
  transition: transform .25s ease;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 360px; }
.faq-a p {
  margin: 0;
  padding: 0 24px 22px;
  color: #36475e;
  font-size: 15.5px;
  line-height: 1.65;
}

/* ============================================
   Contato
   ============================================ */
.contato { background: var(--sky); }
.contato-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contato-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--sky-2);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.contato-card { cursor: pointer; }
a.contato-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.contato-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.contato-wpp .contato-icon { background: var(--wpp); color: #fff; }
.contato-insta .contato-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
.contato-maps .contato-icon { background: #EA4335; color: #fff; }

.contato-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contato-card strong {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-deep);
  line-height: 1.3;
  margin-top: 2px;
}
.contato-sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
}
.contato-cta {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-soft);
}

.hours {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #36475e;
}
.hours li b {
  font-weight: 600;
  color: var(--navy-deep);
  font-variant-numeric: tabular-nums;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  color: #c9d6ec;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 48px;
  padding: 64px 24px 40px;
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.footer-tag {
  margin: 0;
  color: #b9cbe6;
  font-size: 15px;
  line-height: 1.65;
  max-width: 38ch;
  font-style: italic;
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: #c9d6ec;
  font-size: 15px;
  transition: color .2s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  color: #8aa0c4;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* ============================================
   Floating WhatsApp
   ============================================ */
.wpp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 20px rgba(37,211,102,0.5));
  z-index: 90;
  transition: transform .2s ease;
}
.wpp-float:hover {
  transform: translateY(-3px) scale(1.06);
}
.wpp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wpp);
  animation: wpp-ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes btn-breathe {
  0%, 100% { transform: scale(1);    box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
  50%       { transform: scale(1.05); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }
}
.btn-wpp:not(.btn-sm) {
  animation: btn-breathe 2.2s ease-in-out infinite;
}
.btn-wpp:not(.btn-sm):hover {
  animation: none;
}

@keyframes wpp-ring {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.6); opacity: 0;  }
}

/* ============================================
   Google Reviews badge + stars
   ============================================ */
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 999px;
  padding: 8px 18px 8px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #3c4043;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.google-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
  margin: 0;
}
.google-rating {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 48px 0 72px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .timeline-steps::before { display: none; }
  .tl-beam { display: none; }
  .timeline-step { align-items: flex-start; text-align: left; padding: 0; }
  .tl-dot { margin-bottom: 16px; }
  .contato-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dep-card { flex-basis: calc((100% - 24px) / 2); } /* sem mudança em tablet */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav { display: none; }
  .header-row { min-height: 64px; }
  .hero h1 { font-size: 34px; }
  .hero .lede { font-size: 16px; }
  .hero-badges { gap: 20px; }
  .hero-badges strong { font-size: 20px; }
  .timeline-steps { grid-template-columns: 1fr; }
  .doclist { grid-template-columns: 1fr; }
  .doclist-item:nth-child(odd) { border-right: none; }
  .doclist-item:nth-child(even) { padding-left: 0; }
  .doclist-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .doclist-item:last-child { border-bottom: none; }
  .car-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contato-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .dep-card { flex-basis: 100%; }
  .dep-carousel { padding: 0 8px; }
  .dep-arrow { width: 40px; height: 40px; }
  .dep-prev { left: -4px; }
  .dep-next { right: -4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 24px 32px; }
  .hero-tag { left: 16px; right: 16px; bottom: -24px; }
}

/* ============================================
   Seção Lojistas
   ============================================ */
.lojistas {
  background: var(--navy-deep);
  color: var(--white);
}

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

.lojistas-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

.lojistas-left h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--white);
}

.lojistas-left p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 0 0 36px;
}

.lojistas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.loj-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.loj-item:first-child {
  padding-top: 0;
}

.loj-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.loj-num {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.25);
  padding-top: 3px;
}

.loj-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--white);
}

.loj-body p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 860px) {
  .lojistas-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 540px) {
  .loj-item { grid-template-columns: 40px 1fr; gap: 14px; }
}
