/* ============================================================
   LEGACIO — folha de estilos
   ============================================================ */

:root {
  --navy: #081621;
  --navy-2: #0c2231;
  --orange: #f57e00;
  --orange-light: #ffa647;
  --blue: #1967c8;
  --white: #ffffff;
  --bg-soft: #f4f6f8;
  --bg-soft-2: #eef1f4;
  --text: #1b2733;
  --text-muted: #55636f;
  --whatsapp: #25d366;
  --mercado-livre: #ffe600;
  --shopee: #ee4d2d;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(8, 22, 33, 0.08);
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--navy);
}

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #b9c4cd; }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 10px;
}

.title-center { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.title-center p { max-width: 640px; margin: 12px auto 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }

.btn--orange { background: var(--orange); color: var(--white); box-shadow: 0 6px 16px rgba(245, 126, 0, .28); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 6px 16px rgba(25, 103, 200, .28); }
.btn--whatsapp { background: var(--whatsapp); color: var(--white); box-shadow: 0 6px 16px rgba(37, 211, 102, .3); }
.btn--ml { background: var(--mercado-livre); color: var(--navy); box-shadow: 0 6px 16px rgba(255, 230, 0, .35); }
.btn--ghost { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn--block { width: 100%; }
.btn--lg { padding: 22px 20px; font-size: 1.25rem; border-radius: 16px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 4px solid var(--orange);
  box-shadow: 0 2px 10px rgba(8,22,33,.05);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.site-header__logo img { height: 40px; width: auto; }
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav a {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}
.site-header__nav a:hover { color: var(--orange); }
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 4px solid var(--orange);
    display: none;
  }
  .site-header__nav.is-open { display: flex; }
  .nav-toggle { display: block; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy);
}
.hero img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.hero__caption {
  text-align: center;
  padding: 26px 24px;
  color: var(--white);
  background: var(--navy);
}
.hero__caption strong { color: var(--orange); }

/* CTA row */
.cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto 0;
  max-width: var(--container);
  padding: 0 24px;
  position: relative;
  z-index: 5;
}
.cta-row .btn {
  padding: 22px 18px;
  font-size: 1.35rem;
  line-height: 1.3;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(8, 22, 33, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.cta-row .btn--ml { background: var(--mercado-livre); color: var(--navy); }
.cta-row .btn--shopee { background: var(--shopee); color: var(--white); }

@media (max-width: 760px) {
  .cta-row { grid-template-columns: 1fr; margin-top: 28px; }
}

/* Feature strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.feature-card .icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h4 { color: var(--orange); font-size: 1.05rem; }
.feature-card p { margin: 0; font-size: .92rem; }

@media (max-width: 760px) {
  .feature-strip { grid-template-columns: 1fr; }
}

.headline-banner {
  text-align: center;
  color: var(--orange);
  font-size: 1.5rem;
  max-width: 900px;
  margin: 56px auto 0;
  padding: 0 24px;
}

/* ============ COMPARISON CARDS ============ */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.compare-card {
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.compare-card--whatsapp { background: #e9faf0; }
.compare-card--ml { background: #fff9df; }
.compare-card--shopee { background: #ffece5; }
.compare-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; }
.compare-card ul { list-style: none; margin: 18px 0; padding: 0; flex: 1; }
.compare-card li { margin-bottom: 12px; padding-left: 28px; position: relative; font-size: .95rem; color: var(--text); }
.compare-card li.ok::before { content: "✓"; position: absolute; left: 0; color: #1fa855; font-weight: 800; }
.compare-card li.no::before { content: "✕"; position: absolute; left: 0; color: #e5484d; font-weight: 800; }

@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ============ SOBRE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-photos img { border-radius: 10px; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.about-text .eyebrow { margin-bottom: 4px; }
.about-text blockquote {
  border-left: 4px solid var(--orange);
  padding-left: 18px;
  margin: 20px 0;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photos { order: -1; }
}

/* ============ STATS ============ */
.stats-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 46px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 44px;
  box-shadow: var(--shadow);
}
.stats-band .num { font-size: 2.4rem; font-weight: 800; color: var(--orange); }
.stats-band .label { font-size: .9rem; color: #c7d1d9; text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 760px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

/* ============ WHATSAPP SHOWCASE ============ */
.whats-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.whats-feature { display: flex; gap: 16px; margin-bottom: 26px; }
.whats-feature .icon { font-size: 1.6rem; color: var(--orange); flex: none; }
.whats-feature h4 { margin-bottom: 4px; font-size: 1.05rem; }
.whats-feature p { margin: 0; font-size: .92rem; }

.phone-mock {
  background: #000;
  border-radius: 34px;
  padding: 10px;
  box-shadow: var(--shadow);
  max-width: 320px;
  margin: 0 auto;
  border: 2px solid #222;
}
.phone-mock__screen {
  background: #0b141a;
  background-image:
    radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 26px 26px, 34px 34px;
  background-position: 0 0, 13px 17px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 560px;
}

.phone-mock__bar {
  background: #1f2c34;
  color: var(--white);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.wa-back { color: #cfd8dc; font-size: 1rem; }
.wa-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; flex: none;
}
.wa-who { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.wa-who strong { font-size: .88rem; }
.wa-who small { font-size: .7rem; color: #9fb3ba; }
.wa-icons { color: #cfd8dc; font-size: .95rem; }

.phone-mock__chat {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  flex: 1;
}
.wa-daystamp {
  align-self: center;
  background: #182229;
  color: #9fb3ba;
  font-size: .68rem;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.bubble {
  padding: 7px 10px 8px;
  border-radius: 8px;
  font-size: .78rem;
  max-width: 82%;
  line-height: 1.35;
  position: relative;
}
.bubble--in { background: #202c33; color: #e9edef; align-self: flex-start; border-top-left-radius: 2px; }
.bubble--out { background: #005c4b; color: #e9edef; align-self: flex-end; border-top-right-radius: 2px; }
.bubble__time {
  display: block;
  text-align: right;
  font-size: .62rem;
  color: #8696a0;
  margin-top: 3px;
}
.bubble--out .bubble__time { color: #a6ddd3; }
.bubble__time i { font-style: normal; color: #53bdeb; }

.phone-mock__input {
  flex: none;
  background: #1f2c34;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-input-field {
  flex: 1;
  background: #2a3942;
  color: #8696a0;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: .78rem;
}
.wa-mic {
  background: var(--whatsapp);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}

@media (max-width: 900px) {
  .whats-grid { grid-template-columns: 1fr; }
}

/* ============ LOCATION ============ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-block h4 { color: var(--orange); font-size: 1.1rem; margin-bottom: 10px; }
.location-block p { color: #cdd6dd; margin-bottom: 4px; }
.location-block + .location-block { margin-top: 34px; }
.social-row { display: flex; gap: 14px; margin-top: 18px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem;
}
.map-box {
  background: var(--navy-2);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: #b9c4cd;
}
.map-box__map {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 14px;
}
.map-box__map img { width: 100%; display: block; }
.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  margin: -16px 0 0 -8px;
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ============ VALUES / FLEET ============ */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.fleet-grid img,
.fleet-grid video { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

.logo-reveal {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px;
  overflow: hidden;
}
.logo-reveal__mark {
  width: 68%;
  max-width: 360px;
  opacity: 0;
  transform: scale(.85);
  filter: none;
}
.logo-reveal__divider {
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.logo-reveal__slogan {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-align: center;
  opacity: 0;
  margin: 0;
}

.logo-reveal.is-visible .logo-reveal__mark {
  animation: logoRevealMark .7s cubic-bezier(.2, .8, .2, 1.1) forwards;
}
.logo-reveal.is-visible .logo-reveal__divider {
  animation: logoRevealDivider .4s ease-out .7s forwards;
}
.logo-reveal.is-visible .logo-reveal__slogan {
  animation: logoRevealFade .5s ease-out 1.05s forwards;
}

@keyframes logoRevealMark {
  0% { opacity: 0; transform: scale(.85); }
  70% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes logoRevealDivider {
  from { width: 0; }
  to { width: 160px; }
}
@keyframes logoRevealFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.value-cards { display: grid; gap: 18px; }
.value-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--orange);
}
.value-card h4 { color: var(--navy); margin-bottom: 6px; }
.value-card p { margin: 0; font-size: .93rem; }

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-grid img { order: -1; }
}

/* ============ BRAND PARTNERS ============ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.brand-grid .logo-box {
  background: var(--white);
  border: 1px solid #e5e9ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  aspect-ratio: 1/1;
}
.brand-grid img { max-height: 100%; max-width: 100%; object-fit: contain; filter: grayscale(0%); }

@media (max-width: 1000px) { .brand-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 640px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ TESTIMONIALS ============ */
.testimonial-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.testimonial-card .stars { color: var(--orange); margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p { font-size: .9rem; color: var(--text); }
.testimonial-card .who { font-weight: 700; color: var(--navy); font-size: .85rem; margin-top: 10px; }

/* ============ CONTACT FORM ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .9rem; color: var(--navy); }
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d7dee3;
  font-family: inherit;
  font-size: .95rem;
  background: var(--bg-soft);
}
textarea { resize: vertical; min-height: 130px; }
.hint { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }

.form-feedback {
  margin: 16px 0 0;
  color: #1fa855;
  font-weight: 700;
  font-size: .92rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s ease;
}
.form-feedback.is-visible {
  opacity: 1;
  max-height: none;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: #c7d1d9;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid img { height: 34px; margin-bottom: 16px; }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid p { color: #9fadb7; font-size: .9rem; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: .82rem;
  color: #7c8b96;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ============ FORNECEDORES ============ */
.forn-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 72px;
}
.forn-hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
}
.forn-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: .45em;
}
.forn-hero__lead { color: #c7d1d9; font-size: 1.08rem; max-width: 560px; }
.forn-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.forn-hero__ctas .btn--lg { padding: 18px 26px; font-size: 1.05rem; border-radius: 999px; }

.forn-numeros {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.forn-numeros li {
  background: var(--navy-2);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,.06);
}
.forn-numeros strong {
  display: block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}
.forn-numeros span { display: block; margin-top: 6px; font-size: .9rem; color: #b9c4cd; }

.forn-cards { display: grid; gap: 20px; }
.forn-cards--3 { grid-template-columns: repeat(3, 1fr); }
.forn-cards--4 { grid-template-columns: repeat(4, 1fr); }
.forn-card {
  background: var(--white);
  border: 1px solid #e5e9ec;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.section--soft .forn-card { box-shadow: none; }
.forn-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
  margin-bottom: 18px;
}
.forn-card h3 { font-size: 1.2rem; margin-bottom: .35em; }
.forn-card__tag {
  display: block;
  color: var(--orange);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.forn-card p { margin: 0; font-size: .95rem; }

.forn-fluxo {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: none;
}
.forn-fluxo li { position: relative; text-align: center; padding: 0 6px; }
.forn-fluxo li + li::before {
  content: "";
  position: absolute;
  top: 27px;
  right: calc(50% + 38px);
  width: calc(100% - 58px);
  height: 2px;
  background: var(--orange);
}
.forn-fluxo li + li::after {
  content: "";
  position: absolute;
  top: 22px;
  right: calc(50% + 32px);
  border-left: 9px solid var(--orange);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.forn-fluxo__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.forn-fluxo h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .35em; }
.forn-fluxo p { margin: 0; font-size: .92rem; }

.forn-contato {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.forn-contato h2 { font-size: 2rem; }
.forn-link { color: var(--orange); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Grade de marcas com a última fileira centrada: com 66 logotipos em 8
   colunas sobram 2, e encostados à esquerda eles parecem erro de layout. */
.brand-grid--centro { display: flex; flex-wrap: wrap; justify-content: center; }
.brand-grid--centro .logo-box { width: calc((100% - 7 * 14px) / 8); }
@media (max-width: 1000px) { .brand-grid--centro .logo-box { width: calc((100% - 4 * 14px) / 5); } }
@media (max-width: 640px) { .brand-grid--centro .logo-box { width: calc((100% - 2 * 14px) / 3); } }

@media (max-width: 1000px) {
  .forn-cards--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .forn-hero__grid, .forn-contato { grid-template-columns: 1fr; }
  .forn-cards--3 { grid-template-columns: 1fr; }
  .forn-fluxo { grid-template-columns: 1fr; gap: 26px; }
  .forn-fluxo li { display: grid; grid-template-columns: 56px 1fr; column-gap: 18px; text-align: left; }
  .forn-fluxo__num { margin: 0; grid-row: span 2; }
  .forn-fluxo li + li::before, .forn-fluxo li + li::after { display: none; }
}
@media (max-width: 640px) {
  .forn-cards--4 { grid-template-columns: 1fr; }
  .forn-hero { padding: 56px 0; }
}

@media (max-width: 640px) {
  /* No celular o botão do cabeçalho da página de fornecedores não pode quebrar
     em duas linhas e empurrar o logotipo. */
  .site-header__actions .btn--orange { padding: 10px 16px; font-size: .88rem; white-space: nowrap; }
  .site-header__inner { padding: 12px 16px; gap: 12px; }
  .site-header__logo img { height: 32px; }
}

/* ============ CONTATO ============ */
.contato-topo { padding-top: 64px; }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.contato-info h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: .4em; }
.contato-info__lead { font-size: 1.05rem; max-width: 520px; }
.contato-bloco { margin: 30px 0; }
.contato-bloco h2 { font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; }
.contato-bloco h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
  margin-top: 10px;
}
.contato-bloco p { margin: 0 0 6px; color: var(--text); }
.contato-bloco a { color: var(--text); border-bottom: 1px solid #cfd8de; }
.contato-bloco a:hover { color: var(--orange); border-color: var(--orange); }

.contato-mapa { text-align: center; }
.contato-mapa__desenho {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.contato-mapa__desenho img { width: 100%; display: block; }
.contato-pin { width: 22px; height: 22px; margin: -22px 0 0 -11px; background: var(--navy); }
.contato-cds {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.contato-cds div {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: left;
}
.contato-cds strong { display: block; color: var(--navy); }
.contato-cds span { font-size: .88rem; color: var(--text-muted); }
.contato-mapa__legenda { margin: 14px 0 0; font-size: .92rem; }

.contato-form { max-width: 860px; }
.contato-fornecedor { text-align: center; margin: 34px 0 0; }
.contato-fornecedor a { color: var(--orange); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .contato-mapa__desenho { max-width: 380px; }
}
