/* ==========================================================================
   GOLD MAX — Soluções em Gás
   Design System compartilhado (amarelo / preto / branco)
   ========================================================================== */

:root {
  --gold: #FDB913;
  --gold-bright: #FFCA28;
  --gold-deep: #E39B00;
  --black: #0C0C0C;
  --ink: #141414;
  --ink-2: #1C1C1C;
  --line: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-2: rgba(255, 255, 255, 0.42);
  --green-wa: #25D366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 18px 45px -15px rgba(253, 185, 19, 0.5);
  --container: 1180px;
  --font-head: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Barlow', -apple-system, system-ui, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.gold { color: var(--gold); }
.hl { color: var(--black); background: var(--gold); padding: 0 8px; }

/* ============================ TOP URGENCY BAR ============================ */
.topbar {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  color: var(--black);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 60;
}
.topbar strong { text-transform: uppercase; }
.topbar .flame { animation: flicker 1.4s infinite; display: inline-block; }

/* ============================ HEADER ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand .logo-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--black);
  border-radius: 9px;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
}
.brand span.max { color: var(--gold); }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { font-size: 0.9rem; color: var(--muted); font-weight: 600; transition: color .2s; }
.nav a:hover { color: var(--white); }
.header .btn { padding: 10px 18px; font-size: 0.82rem; }

/* mobile menu (três pontinhos) */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 10px; margin-left: 6px; z-index: 57;
}
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .28s ease; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: .3s; z-index: 54; }
.nav-backdrop.open { opacity: 1; visibility: visible; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header .header-cta { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); padding: 88px 24px 28px;
    transform: translateX(105%); transition: transform .32s cubic-bezier(.22,1,.36,1);
    z-index: 56; border-left: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 1.08rem; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--white); }
  .nav a:last-of-type { border-bottom: none; }
  .nav .nav-cta {
    margin-top: 20px; text-align: center; background: var(--gold); color: var(--black);
    font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
    border-radius: 999px; padding: 14px; border-bottom: none;
  }
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s;
  position: relative;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  animation: pulse-gold 2.2s infinite;
}
.btn-gold:hover { transform: translateY(-3px) scale(1.02); background: var(--gold-bright); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn .ico { font-size: 1.1em; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* shine sweep on gold buttons */
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 3.2s infinite;
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding: 84px 0 90px;
  background:
    radial-gradient(circle at 78% 12%, rgba(253,185,19,0.16), transparent 42%),
    radial-gradient(circle at 12% 90%, rgba(253,185,19,0.08), transparent 45%),
    var(--black);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
  pointer-events: none;
}
/* imagem de chama ao fundo do hero */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.20;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(12,12,12,.55) 0%, rgba(12,12,12,.82) 70%, var(--black) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
/* imagem do produto dentro do cartão do hero */
.hero-card .card-photo {
  width: calc(100% + 56px); margin: -28px -28px 20px; height: 190px;
  object-fit: cover; border-radius: 22px 22px 0 0; display: block;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(253,185,19,0.12);
  border: 1px solid rgba(253,185,19,0.35);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: ping 1.5s infinite; }
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .sub {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap;
}
.hero-trust .item { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.92rem; color: var(--muted); }
.hero-trust .item .ci { color: var(--gold); font-size: 1.15rem; }

/* hero visual card */
.hero-card {
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card .offer-tag {
  position: absolute; top: -16px; right: 22px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: 0.78rem; padding: 7px 16px; border-radius: 999px;
  transform: rotate(3deg); box-shadow: var(--shadow-gold);
}
.hero-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.hero-card .price {
  font-family: var(--font-head); font-weight: 700;
  font-size: 3rem; color: var(--gold); line-height: 1; margin: 12px 0 4px;
}
.hero-card .price small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.hero-card .price .from { font-size: 1rem; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: .1em; }
.hero-card ul { list-style: none; margin: 18px 0 22px; }
.hero-card ul li { display: flex; gap: 10px; padding: 7px 0; color: rgba(255,255,255,.85); font-size: .96rem; }
.hero-card ul li .ck { color: var(--gold); font-weight: 700; }
.hero-card .btn { width: 100%; justify-content: center; }
.hero-form label { display: block; font-size: .82rem; color: var(--muted); margin: 10px 0 5px; font-weight: 600; }
.hero-form input {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: rgba(0,0,0,.35); color: var(--white); font-size: .95rem;
}
.hero-form input:focus { outline: none; border-color: var(--gold); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding: 54px 0 64px; }
}

/* ============================ SECTIONS ============================ */
.section { padding: 84px 0; position: relative; }
.section.alt { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.82rem; color: var(--gold); margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* trust logos / marcas */
.marcas { padding: 34px 0; background: var(--ink); border-block: 1px solid var(--line); }
.marcas .label { text-align: center; color: var(--muted-2); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 18px; font-weight: 600; }
.marcas .row { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; align-items: center; }
.marcas .row span {
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  color: rgba(255,255,255,.5); letter-spacing: .04em; text-transform: uppercase;
}

/* feature / benefit cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(253,185,19,.4); }
.card .ic {
  width: 54px; height: 54px; border-radius: 13px;
  display: grid; place-items: center; font-size: 1.6rem;
  background: rgba(253,185,19,.12); color: var(--gold); margin-bottom: 18px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
.step .num { font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: rgba(253,185,19,.25); }
.step h4 { font-size: 1.15rem; margin: 6px 0 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* offer / price band */
.offer-band {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  color: var(--black);
  border-radius: var(--radius);
  padding: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.offer-band::before {
  content: "🔥"; position: absolute; right: -10px; bottom: -20px; font-size: 9rem; opacity: .12;
}
.offer-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--black); }
.offer-band p { font-weight: 600; max-width: 480px; }
.offer-band .big { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem,6vw,4rem); line-height: 1; }
.offer-band .big small { display:block; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.offer-band .btn { background: var(--black); color: var(--gold); animation: none; box-shadow: 0 14px 30px -10px rgba(0,0,0,.5); }
.offer-band .btn:hover { background: #000; color: var(--gold-bright); }
.offer-band .btn::after { display: none; }

/* testimonials */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: rgba(255,255,255,.86); font-size: .98rem; margin-bottom: 18px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid; place-items: center; color: var(--black); font-weight: 700; font-family: var(--font-head);
  flex-shrink: 0; overflow: hidden;
}
.review .who b { display: block; font-size: .95rem; }
.review .who span { font-size: .82rem; color: var(--muted-2); }
/* placeholder for print/whatsapp feedback screenshots */
.review-img {
  background: var(--ink-2); border: 1px dashed rgba(253,185,19,.4);
  border-radius: var(--radius); overflow: hidden; display: grid; place-items: center;
  min-height: 220px; color: var(--muted-2); font-size: .85rem; text-align: center; padding: 20px;
}
.review-img img { border-radius: 12px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--white);
  font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; text-transform: none;
  padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-q .plus { color: var(--gold); font-size: 1.5rem; transition: transform .25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); }
.faq-a .inner { padding: 0 0 20px; }

/* CTA final */
.cta-final {
  text-align: center; padding: 90px 0;
  background: radial-gradient(circle at 50% 0%, rgba(253,185,19,.14), transparent 60%), var(--ink);
  border-top: 1px solid var(--line);
}
.cta-final h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.cta-final h2 em { color: var(--gold); font-style: normal; }
.cta-final p { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat .n { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--gold); }
.stat .l { color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }

/* institucional services list */
.svc { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .svc { grid-template-columns: 1fr; } }
.svc a.card { display: block; }

/* cards com foto (serviços em destaque) */
.card-media { padding: 0; overflow: hidden; }
.card-media img { width: 100%; height: 200px; object-fit: cover; display: block; filter: saturate(1.05); }
.card-media .card-body { padding: 26px; }
.card-media:hover img { transform: none; }
.mini-svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
@media (max-width: 860px) { .mini-svc { grid-template-columns: 1fr; } }
.mini-svc .card { padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.mini-svc .card .ic { margin-bottom: 0; width: 46px; height: 46px; font-size: 1.3rem; flex-shrink: 0; }
.mini-svc .card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.mini-svc .card p { font-size: .9rem; }

/* faixa de imagem lateral (sobre / serviço) */
.media-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.svc .card .arrow { color: var(--gold); font-family: var(--font-head); font-weight: 600; margin-top: 14px; display: inline-flex; gap: 6px; }

/* ============================ FOOTER ============================ */
.footer { background: #080808; border-top: 1px solid var(--line); padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; margin-bottom: 34px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer h4 { font-size: 1rem; color: var(--gold); margin-bottom: 14px; letter-spacing: .06em; }
.footer p, .footer a { color: var(--muted); font-size: .93rem; }
.footer a { display: block; padding: 5px 0; }
.footer a:hover { color: var(--white); }
.footer .copy { text-align: center; color: var(--muted-2); font-size: .82rem; border-top: 1px solid var(--line); padding-top: 22px; }

/* ============================ WHATSAPP FLOAT ============================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
}
.wa-float .wa-btn {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--green-wa); color: #fff; display: grid; place-items: center;
  font-size: 2rem; box-shadow: 0 12px 30px -6px rgba(37,211,102,.6);
  animation: wa-bounce 2.6s infinite; position: relative;
}
.wa-float .wa-btn::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--green-wa); opacity: .55; z-index: -1; animation: wa-ping 2s infinite;
}
.wa-float .wa-label {
  background: var(--white); color: #111; font-weight: 700; font-size: .86rem;
  padding: 9px 15px; border-radius: 12px; box-shadow: var(--shadow);
  white-space: nowrap; position: relative;
}
.wa-float .wa-label::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border-left: 7px solid var(--white); border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
@media (max-width: 600px) { .wa-float .wa-label { display: none; } }

/* sticky mobile CTA */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(12,12,12,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
}
.mobile-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 720px) { .mobile-cta { display: block; } .wa-float { bottom: 84px; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================ ANIMATIONS ============================ */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253,185,19,.5); }
  50% { box-shadow: 0 0 0 14px rgba(253,185,19,0); }
}
@keyframes shine { 0% { transform: translateX(-120%); } 60%,100% { transform: translateX(120%); } }
@keyframes ping { 0% { transform: scale(1); opacity: 1; } 70%,100% { transform: scale(2.4); opacity: 0; } }
@keyframes wa-ping { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes wa-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes flicker { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* WhatsApp-style testimonial print (real feedback) */
.wa-print { background:#0b141a; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; display:flex; flex-direction:column; }
.wa-print .wa-head { display:flex; align-items:center; gap:10px; background:#202c33; padding:12px 14px; }
.wa-print .wa-ava { width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--gold-deep)); display:grid; place-items:center; color:#000; font-weight:700; font-family:var(--font-head); flex-shrink:0; font-size:.8rem; }
.wa-print .wa-head b { font-size:.9rem; color:#e9edef; display:flex; align-items:center; gap:5px; }
.wa-print .wa-head b::after { content:"✔"; color:#53bdeb; font-size:.7rem; }
.wa-print .wa-head span { font-size:.72rem; color:#8696a0; display:block; }
.wa-print .wa-body { padding:16px 14px; display:flex; flex-direction:column; gap:10px; flex:1; }
.wa-print .wa-msg { background:#202c33; border-radius:0 10px 10px 10px; padding:9px 11px; max-width:94%; box-shadow:0 1px 1px rgba(0,0,0,.35); }
.wa-print .wa-name { font-size:.74rem; font-weight:700; margin-bottom:3px; }
.wa-print .wa-msg p { color:#e9edef; font-size:.86rem; line-height:1.45; margin:0; }
.wa-print .wa-time { display:block; text-align:right; font-size:.64rem; color:#8696a0; margin-top:4px; }

/* ===== LOGO (imagem em chip claro p/ contraste no header/rodapé escuros) ===== */
.brand { padding: 0; gap: 0; }
.brand-logo { height: 30px; width: auto; display: block; }
.footer .brand { display: inline-block; }
.footer .brand-logo { height: 40px; margin-bottom: 4px; }
img { max-width: 100%; }
/* ===== Ajustes finos p/ celular ===== */
@media (max-width: 600px){
  .brand-logo { height: 26px; }
  .footer .brand-logo { height: 34px; }
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 54px; }
  .topbar { font-size: .72rem; line-height: 1.5; }
  .section-head p, .marcas .row span { font-size: .98rem; }
}
