:root {
  --ink: #1a1f2e;
  --ink-2: #2c3347;
  --paper: #f5f6f2;
  --paper-2: #ffffff;
  --signal: #f5a623;
  --signal-dark: #d98c0a;
  --amber: #ffb020;
  --gold: #ffb020;
  --steel: #6b7585;
  --steel-dark: #3d4758;
  --whatsapp: #25D366;
  --line-soft: rgba(60, 70, 90, 0.1);
  --line-dark: rgba(60, 70, 90, 0.1);
  --radius: 14px;
  --max: 1180px;
  --shadow: 0 20px 40px -20px rgba(60, 70, 90, 0.18);
  /* light section backgrounds */
  --section-alt: #eef0f5;
  --section-dark: #2c3347;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--steel-dark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}
h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
}
p {
  margin: 0;
  line-height: 1.6;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 15px;
  padding: 16px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}
.btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}
.btn-primary {
  background: var(--signal);
  color: var(--ink);
  box-shadow: 0 10px 24px -8px rgba(245, 166, 35, 0.55);
}
.btn-primary:hover {
  background: var(--signal-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline:hover {
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline.on-light {
  border-color: rgba(47, 55, 66, 0.3);
  color: var(--steel-dark);
}
.btn-outline.on-light:hover {
  border-color: var(--steel-dark);
}
.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---- header ---- */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #f5f6f2;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 70, 90, 0.12);
  transition: padding 0.25s ease;
  box-shadow: 0 2px 16px -4px rgba(60, 70, 90, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  max-width: var(--max);
  margin: 0 auto;
  transition: padding 0.25s ease;
}
header.shrink .nav {
  padding: 12px 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  background: #f2f3ef;
  padding: 4px 10px;
  transition: height 0.25s ease;
}
header.shrink .logo img {
  height: 42px;
}
.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  color: var(--steel-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--signal);
  transition: width 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cta .btn {
  padding: 11px 20px;
  font-size: 13px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: 0.25s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: #fff;
  z-index: 70;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 26px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

/* ---- hero ---- */
.hero {
  position: relative;
  background:
    linear-gradient(
      160deg,
      rgba(20, 23, 31, 0.78) 0%,
      rgba(245, 166, 35, 0.18) 100%
    ),
    url("imagens/jp-guincho-campinas-hero.webp") center/cover no-repeat;
  color: #fff;
  color: var(--ink);
  color: var(--ink);
  padding: 96px 0 70px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 54px,
    rgba(60, 70, 90, 0.04) 54px 58px
  );
  opacity: 0.7;
}
.beacon {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.22),
    transparent 70%
  );
  filter: blur(10px);
  animation: pulse 4.5s ease-in-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero .eyebrow {
  color: var(--signal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero .eyebrow .bar {
  width: 26px;
  height: 2px;
  background: var(--signal-dark);
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  margin-bottom: 20px;
  color: var(--paper);
}
.hero h1 .hi {
  color: var(--signal-dark);
}
.hero .sub {
  font-size: 18px;
  color: var(--gold);
  max-width: 600px;
  margin: 0 auto 38px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(60, 70, 90, 0.15);
  padding-top: 34px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 34px;
  border-right: 1px solid rgba(60, 70, 90, 0.15);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item svg {
  width: 26px;
  height: 26px;
  color: var(--signal-dark);
  flex: none;
}
.trust-item strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.trust-item span {
  font-size: 12.5px;
  color: var(--steel);
}

/* ---- road divider (signature) ---- */
.road {
  position: relative;
  height: 64px;
  background: #dde0e8;
  overflow: hidden;
}
.road .lane {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 4px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(
    90deg,
    var(--amber) 0 34px,
    transparent 34px 62px
  );
  opacity: 0.85;
  animation: drive 3.2s linear infinite;
}
@keyframes drive {
  from {
    transform: translate(0, -50%);
  }
  to {
    transform: translate(-62px, -50%);
  }
}
.road .truck-icon {
  position: absolute;
  top: 50%;
  left: -60px;
  width: 38px;
  height: 38px;
  color: var(--signal);
  transform: translateY(-58%);
  animation: travel 7s linear infinite;
}
@keyframes travel {
  from {
    left: -60px;
  }
  to {
    left: 110%;
  }
}

section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 0 52px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .eyebrow {
  color: var(--signal);
  margin-bottom: 10px;
  display: inline-block;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--ink);
}
.section-head p {
  margin-top: 16px;
  color: var(--steel);
  font-size: 16.5px;
}

/* ---- features ---- */
.features {
  background: var(--paper-2);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line-dark);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card .ico svg {
  width: 26px;
  height: 26px;
  color: var(--amber);
}
.feature-card h3 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--steel);
  font-size: 15px;
}

/* ---- sobre ---- */
.sobre .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.sobre-art {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-2); /* Fundo cinza claro que criamos antes */
    padding: 20px;
}

.sobre-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.sobre-text .eyebrow {
  color: var(--signal);
  margin-bottom: 12px;
  display: block;
}
.sobre-text h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--ink);
  margin-bottom: 22px;
}
.sobre-text p {
  color: var(--steel);
  font-size: 16px;
  margin-bottom: 16px;
}
.sobre-text .btn {
  margin-top: 20px;
}

/* ---- servicos ---- */
.servicos {
  background: var(--paper-2);
}
.servico-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.servico {
  background: var(--paper-2);
  padding: 34px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.servico .ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 10px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.servico .ico svg {
  width: 22px;
  height: 22px;
  color: var(--signal);
}
.servico h3 {
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.servico p {
  font-size: 14px;
  color: var(--steel);
}

/* ---- como funciona ---- */
.como {
  background: var(--ink);
  color: #fff;
  position: relative;
}
.como .section-head h2 {
  color: #fff;
}
.como .section-head p {
  color: rgba(255, 255, 255, 0.6);
}
.rota {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.rota::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--amber) 0 14px,
    transparent 14px 26px
  );
  z-index: 0;
}
.passo {
  position: relative;
  z-index: 1;
}
.passo .num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 22px;
  box-shadow:
    0 0 0 6px var(--ink),
    0 0 0 8px rgba(255, 90, 54, 0.3);
}
.passo h3 {
  font-size: 16px;
  color: #fff;
  text-transform: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.passo p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

/* ---- galeria ---- */
.galeria {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.galeria .section-head h2 {
  color: #fff;
}
.galeria .section-head p {
  color: rgba(255, 255, 255, 0.6);
}
.galeria .eyebrow {
  color: var(--amber);
}
.gal-wrap {
  position: relative;
}
.gal-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.gal-track::-webkit-scrollbar {
  display: none;
}
.gal-item {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gal-item:hover img {
  transform: scale(1.06);
}
.gal-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  color: rgba(255, 255, 255, 0.4);
  padding: 16px;
  text-align: center;
}
.gal-fallback svg {
  width: 32px;
  height: 32px;
  color: var(--amber);
  opacity: 0.8;
}
.gal-fallback span {
  font-size: 12px;
  line-height: 1.5;
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}
.gal-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 14px 16px;
  font-size: 13px;
  color: #fff;
}
.gal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.gal-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  flex: none;
}
.gal-arrow:hover {
  background: var(--signal);
  border-color: var(--signal);
}
.gal-arrow svg {
  width: 18px;
  height: 18px;
}
.gal-dots {
  display: flex;
  gap: 7px;
}
.gal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.gal-dot.active {
  background: var(--amber);
  transform: scale(1.3);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 11, 15, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open {
  display: flex;
}
.lightbox-box {
  position: relative;
  max-width: 720px;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-2);
}
.lightbox-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-prev {
  left: -56px;
}
.lightbox-next {
  right: -56px;
}
.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 820px) {
  .lightbox-prev {
    left: 6px;
  }
  .lightbox-next {
    right: 6px;
  }
}

/* ---- depoimentos ---- */
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}
.stars {
  display: flex;
  gap: 4px;
}
.stars svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}
.rating-summary strong {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: var(--ink);
}
.rating-summary span {
  font-size: 13.5px;
  color: var(--steel);
}
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-card {
  background: var(--paper-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
}
.depo-card .stars {
  margin-bottom: 14px;
}
.depo-card .stars svg {
  width: 16px;
  height: 16px;
}
.depo-card p {
  font-size: 14.5px;
  color: var(--steel-dark);
  margin-bottom: 20px;
}
.depo-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
}
.depo-who strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}
.depo-who span {
  font-size: 12.5px;
  color: var(--steel);
}

/* ---- cta band ---- */
.ctaband {
  background: var(--signal);
  color: var(--ink);
  text-align: center;
  padding: 70px 0;
}
.ctaband h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 16px;
  color: var(--ink);
}
.ctaband p {
  color: rgba(20, 23, 31, 0.75);
  font-size: 16px;
  margin-bottom: 32px;
}
.ctaband .btn-primary {
  background: var(--ink);
  color: #fff;
}
.ctaband .btn-primary:hover {
  background: #000;
  color: #fff;
}
.ctaband-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- footer ---- */
footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-logo {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  background: #f2f3ef;
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
}
.footer-grid h4 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-grid p,
.footer-grid li {
  font-size: 14px;
  line-height: 1.7;
}
.footer-grid li {
  margin-bottom: 8px;
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.social a:hover {
  background: var(--signal);
}
.social svg {
  width: 17px;
  height: 17px;
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a:hover {
  color: #fff;
}

/* ---- reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---- whatsapp fab ---- */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 55;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(245, 166, 35, 0.6);
  animation: fabpulse 2.4s ease-in-out infinite;
}
.fab svg {
  width: 28px;
  height: 28px;
  color: var(--paper-2);
}
@keyframes fabpulse {
  0%,
  100% {
    box-shadow: 0 10px 26px -6px rgba(245, 166, 35, 0.6);
  }
  50% {
    box-shadow: 0 10px 30px -4px rgba(245, 166, 35, 0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---- responsive ---- */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .sobre .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-art {
    max-width: 360px;
    margin: 0 auto;
  }
  .servico-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rota {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  .rota::before {
    display: none;
  }
  .depo-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trust-item {
    padding: 6px 18px;
  }
}
@media (max-width: 560px) {
  section {
    padding: 64px 0;
  }
  .hero {
    padding: 76px 0 50px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    justify-content: center;
  }
  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .trust-item {
    border-right: 0;
    padding: 0;
  }
  .servico-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom a {
    margin-left: 0;
    margin-right: 16px;
  }
}
