/* ---------- NEWSLETTER STRIP ---------- */
.news {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(199, 134, 74, 0.18), transparent 70%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news::before, .news::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 30%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2' height='2' viewBox='0 0 2 2'><rect width='1' height='1' fill='%23222'/></svg>");
  opacity: 0.15;
}
.news::before { left: 0; }
.news::after { right: 0; }
.news__inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.news h2 { margin: 24px 0 24px; }
.news__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 32px auto 0;
}
.news__form input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 16px 20px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}
.news__form input:focus { border-color: var(--red); }

/* ---------- PROCESS ---------- */
.proc { padding: 110px 0; background: var(--bg); }
.proc__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.proc__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.proc__visual image-slot { width: 100%; height: 100%; display: block; }
.proc__content h2 { margin-bottom: 8px; }
.proc__content h2 .red { color: var(--red); }
.proc__content > p { margin-bottom: 32px; }
.proc__list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.proc__item {
  border-bottom: 1px solid var(--line);
}
.proc__head {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  text-transform: uppercase;
  transition: color .2s;
  line-height: 1;
}
.proc__head:hover { color: var(--red); }
.proc__num {
  color: var(--red);
  margin-right: 16px;
}
.proc__head .pcaret {
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--ink);
  border-radius: 50%;
  transition: background .2s, border-color .2s, transform .3s;
}
.proc__item[open] .pcaret {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.proc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  padding-right: 60px;
}
.proc__item[open] .proc__body {
  max-height: 220px;
  padding-bottom: 22px;
}
@media (max-width: 860px) {
  .proc__grid { grid-template-columns: 1fr; }
}

/* ---------- BIG STATS BAR ---------- */
.statsbar {
  background: var(--copper);
  color: var(--night);
  padding: 0;
}
.statsbar .statc { border-right-color: rgba(31, 20, 24, 0.2); }
.statsbar .statc__label { color: rgba(31, 20, 24, 0.72); }
.statsbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.statc {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.18);
  position: relative;
}
.statc:last-child { border-right: none; }
.statc__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.statc__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 860px) {
  .statsbar__grid { grid-template-columns: repeat(2, 1fr); }
  .statc { padding: 30px 24px; }
}

/* ---------- PRICING ---------- */
.pricing { padding: 110px 0; background: var(--bg); }
.pricing__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.pricing__head h2 .red { color: var(--red); }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.plan {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s;
}
.plan:hover { border-color: var(--red-dark); }
.plan--featured {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--night);
}
.plan__badge {
  position: absolute;
  top: 28px; right: 28px;
  background: var(--bg);
  color: var(--ink);
  font-size: 10px;
  padding: 6px 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.plan--featured .plan__badge { background: var(--night); color: var(--copper); }
.plan--featured .plan__name,
.plan--featured .plan__price { color: var(--night); }
.plan--featured .plan__price .currency { color: rgba(31,20,24,0.6); }
.plan--featured .plan__price-unit,
.plan--featured .plan__tag { color: rgba(31,20,24,0.75); }
.plan--featured .plan__features li { color: rgba(31,20,24,0.92); }
.plan--featured .plan__features li::before { background: var(--night); }
.plan--featured .plan__features li strong { color: var(--night); }
.plan--featured .plan__price-block { border-bottom-color: rgba(31,20,24,0.22); }
.plan__price-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.plan--featured .plan__price-block { border-bottom-color: rgba(0,0,0,0.18); }
.plan__price {
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.plan__price .currency { font-size: 28px; color: var(--muted); }
.plan--featured .plan__price .currency { color: rgba(255,255,255,0.75); }
.plan__price-unit { font-size: 12px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 8px; }
.plan--featured .plan__price-unit { color: rgba(255,255,255,0.85); }
.plan__name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.plan__tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 24px;
}
.plan--featured .plan__tag { color: rgba(255,255,255,0.85); }
.plan__features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}
.plan__features li {
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex; gap: 12px;
  align-items: center;
  letter-spacing: 0.01em;
}
.plan__features li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.plan--featured .plan__features li::before { background: var(--ink); }
.plan--featured .plan__features li { color: rgba(255,255,255,0.95); }
.plan__features li.excluded { color: var(--muted-2); }
.plan__features li.excluded::before { background: var(--muted-2); opacity: 0.4; }
.plan__features li strong { color: var(--ink); font-weight: 700; }
.plan--featured .plan__features li strong { color: var(--ink); }
@media (max-width: 960px) {
  .pricing__head { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.faq__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.faq__left h2 .red { color: var(--red); }
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.faq__q:hover { color: var(--red); }
.faq__caret {
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 18px;
  transition: all .25s;
  flex-shrink: 0;
}
.faq__item[open] .faq__caret {
  background: var(--red);
  border-color: var(--red);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  padding-right: 50px;
}
.faq__item[open] .faq__a {
  max-height: 400px;
  padding: 0 50px 28px 0;
}
@media (max-width: 860px) {
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 140px 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(199, 134, 74, 0.20), transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 30%, rgba(31, 52, 95, 0.30), transparent 70%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.final-cta__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(140px, 18vw, 280px);
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
  line-height: 1;
}
.final-cta__inner { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(48px, 7vw, 100px); max-width: 16ch; margin: 32px auto 24px; }
.final-cta__sub { font-size: 16px; color: var(--muted); max-width: 56ch; margin: 0 auto 40px; }
.final-cta__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.final-cta__meta {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--line);
  max-width: 800px; margin: 0 auto;
}
.final-cta__meta div { text-align: left; }
.final-cta__meta strong {
  font-size: 11px; letter-spacing: 0.18em; color: var(--red);
  text-transform: uppercase; display: block; margin-bottom: 6px; font-weight: 700;
}
.final-cta__meta span { font-size: 14px; color: var(--ink-2); }

/* ---------- FOOTER ---------- */
.footer { padding: 80px 0 32px; background: var(--bg); border-top: 1px solid var(--line); }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer__brand-line { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.footer__brand-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
}
.footer__brand-logo image-slot { width: 100%; height: 100%; display: block; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.footer__brand-name .red { color: var(--red); }
.footer__tagline { color: var(--muted); font-size: 14px; max-width: 36ch; line-height: 1.6; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14px; color: var(--ink-2); transition: color .2s; }
.footer__col a:hover { color: var(--red); }
.footer__contact {
  display: flex; flex-direction: column; gap: 18px;
}
.footer__contact-row { display: flex; align-items: center; gap: 14px; }
.footer__contact-icon {
  width: 40px; height: 40px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 14px;
  flex-shrink: 0;
}
.footer__contact small { display: block; font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.footer__contact strong { font-size: 14px; font-weight: 500; color: var(--ink-2); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--ink-2);
  transition: all .2s;
}
.footer__social a:hover { background: var(--red); border-color: var(--red); color: var(--ink); }
.footer__legal { display: inline-flex; gap: 18px; }
.footer__legal a { color: var(--muted); transition: color .2s; }
.footer__legal a:hover { color: var(--copper); }
@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

/* ---------- APPOINTMENT INTRO (under title) ---------- */
.appoint__intro {
  background: transparent;
  border: none;
  padding: 22px 0 0;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column;
  gap: 14px;
}
.appoint__intro-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink);
}
.appoint__intro-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin: 4px 0;
}
.appoint__intro-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
}
.appoint__intro-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 2px;
  background: var(--red);
}
.appoint__brands {
  display: flex; gap: 18px; flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.appoint__brands span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.appoint__intro .eyebrow { margin-bottom: 4px; }
.appoint__intro-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
}
.appoint__intro-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.appoint__intro-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}
.appoint__intro-list li {
  font-size: 13px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}
.appoint__intro-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 12px; height: 2px;
  background: var(--copper);
}
.appoint__brands {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.appoint__intro--banner .appoint__brands { padding-top: 0; border-top: none; margin-top: 0; }
.appoint__brands span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .appoint__intro--banner { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- TESTIMONIAL CARD ADDITIONS ---------- */
.tcard__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.tcard__score {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--copper);
  line-height: 1;
}
.tst__indicator {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 36px;
}
.tst__indicator-dot {
  width: 24px; height: 3px;
  background: var(--line-2);
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.tst__indicator-dot--active { background: var(--copper); width: 40px; }

/* ---------- BLOG ---------- */
.blog { padding: 110px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.blog__head { margin-bottom: 56px; }
.blog__head h2 .red { color: var(--red); }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bpost {
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.bpost:hover { border-color: var(--copper); transform: translateY(-4px); }
.bpost__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-4);
  overflow: hidden;
}
.bpost__media image-slot { width: 100%; height: 100%; display: block; }
.bpost__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--copper);
  color: var(--night);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}
.bpost__body {
  padding: 26px 26px 28px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.bpost__meta {
  display: flex; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.bpost__meta .dot { color: var(--copper); }
.bpost__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
}
.bpost__link {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
}
.bpost__link:hover { color: var(--red-2); }
@media (max-width: 860px) {
  .blog__grid { grid-template-columns: 1fr; }
}

/* ---------- MOBILE CONTAINMENT ---------- */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  .wrap {
    max-width: 100%;
    padding-inline: 18px;
  }

  .topbar {
    display: none;
  }

  .nav {
    width: 100%;
    padding: 12px 14px;
    gap: 12px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .nav__brand,
  .brandmark {
    min-width: 0;
  }

  .nav__brand {
    flex: 1 1 auto;
    max-width: calc(100% - 168px);
    overflow: hidden;
  }

  .brandmark {
    gap: 8px;
  }

  .brandmark__logo {
    width: 42px;
    height: 42px;
  }

  .brandmark__word {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 122px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px;
  }

  .nav__cta {
    flex: 0 0 auto;
    gap: 8px;
  }

  .nav__cta .btn--primary {
    flex: 0 0 auto;
    width: 108px;
    max-width: 108px;
    min-height: 42px;
    padding: 10px 12px;
    gap: 8px;
    justify-content: space-between;
    white-space: nowrap;
    font-size: 0;
    line-height: 1.05;
  }

  .nav__cta .btn--primary::before {
    content: 'Quote';
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .nav__cta .btn--primary .arrow {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .nav__call {
    flex: 0 0 auto;
    width: 42px;
    max-width: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
    font-size: 16px;
  }

  .nav__call-txt { display: none; }

  .h-mega,
  .hero__title {
    font-size: 42px;
  }

  .h-1,
  .h-2 {
    font-size: 38px;
  }

  .eyebrow {
    gap: 10px;
    letter-spacing: 0.16em;
  }

  .hero {
    padding: 42px 0 28px;
  }

  .hero__watermark,
  .showcase__watermark {
    max-width: 100%;
    overflow: hidden;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: space-between;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero__trust-item span {
    font-size: 9px;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .features__grid,
  .gallery-strip__grid,
  .statsbar__grid {
    grid-template-columns: 1fr;
  }

  .about__mini {
    left: 12px;
  }

  .about__stats {
    right: 12px;
  }

  .showcase__tags {
    gap: 8px;
  }

  .showcase__tags span {
    white-space: normal;
  }

  .tst {
    padding: 72px 0;
  }

  .tst__head {
    gap: 24px;
    margin-bottom: 28px;
  }

  .tst__head h2 {
    max-width: 100%;
    font-size: 42px;
  }

  .tst__head .lead {
    max-width: 100%;
    font-size: 14px;
  }

  .tst__rating {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .tst__stage {
    height: 260px;
    margin-bottom: 24px;
  }

  .tst__car image-slot {
    width: 100%;
    height: 100%;
  }

  .tst__grid--overlap {
    padding-top: 0;
  }

  .tcard {
    padding: 26px 22px;
    min-height: 0;
  }

  .footer {
    padding: 60px 0 28px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 36px;
  }

  .brandmark--footer .brandmark__word {
    max-width: none;
    font-size: 32px;
  }

  .footer__contact-row {
    align-items: flex-start;
  }

  .footer__contact-row > div:last-child {
    min-width: 0;
  }

  .footer__contact strong {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.4;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

/* ════════════════════════════════════════════════════════════
   COPY V2 — Batestin Auto Detailing (carros · motos · barcos · motorhomes)
   ════════════════════════════════════════════════════════════ */

/* --- Pacotes por serviço: 4 colunas + preço placeholder --- */
.pricing__grid { grid-template-columns: repeat(4, 1fr); }
.plan__price--tba { font-size: 42px; }
.plan__price--tba .currency { font-size: 18px; }
@media (max-width: 1080px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pricing__grid { grid-template-columns: 1fr; } }

/* --- Faixa de veículos (seção 5) --- */
.vehicles {
  padding: 60px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.vehicles__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 52px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}
.vehicles__title .sep { color: var(--red); margin: 0 8px; }
.vehicles__line { margin: 18px auto 0; max-width: 60ch; font-size: 15px; color: var(--muted); line-height: 1.6; }
.vehicles__line strong { color: var(--ink); font-weight: 600; }

/* --- Bandas com chips (Extras / Produtos, seções 9 e 10) --- */
.feature-band { padding: 100px 0; background: var(--bg); }
.feature-band--alt { background: var(--bg-2); }
.feature-band__head { max-width: 760px; }
.feature-band__head h2 { margin-top: 14px; }
.feature-band__head .lead { margin-top: 18px; }
.chiprow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.chiprow span {
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 2px;
  transition: border-color .2s, color .2s, background .2s;
}
.chiprow span:hover { border-color: var(--red); color: var(--ink); background: rgba(22, 93, 191,0.08); }

/* --- Espaço dos cards de Diferenciais --- */
.features { padding: 56px 0 90px; }

/* --- Botões de CTA no nav (Ligar + Agendar) --- */
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__call { gap: 8px; }

/* --- Nossa história (empresa familiar) --- */
.story { padding: 110px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.story__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.story__stat { display: inline-flex; align-items: baseline; gap: 10px; }
.story__stat strong { font-family: 'Anton', sans-serif; font-size: 46px; line-height: 1; color: var(--red); }
.story__stat span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.story__head h2 { margin: 14px 0 0; }
.story__intro { margin: 22px auto 0; max-width: 62ch; font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.story__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.scard {
  position: relative; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 4px; padding: 32px 26px 30px; display: flex; flex-direction: column;
  gap: 12px; transition: border-color .25s, transform .25s, background .25s;
}
.scard:hover { border-color: var(--red); transform: translateY(-4px); background: var(--bg-4); }
.scard__num { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.12em; color: var(--red); }
.scard__title { font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.scard__body { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.scard__body strong { color: var(--ink-2); font-weight: 600; }
.story__sign { text-align: center; margin-top: 46px; }
.story__sign-name { display: block; font-weight: 700; color: var(--ink); font-size: 16px; }
.story__sign-role { display: block; margin-top: 5px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
@media (max-width: 1000px) { .story__cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .story { padding: 64px 0; } .story__cards { grid-template-columns: 1fr; } }

/* --- Selo "Vamos até você" no hero --- */
.hero__come {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 9px; margin: 2px 0;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-2); font-weight: 500;
  border: 1px solid var(--line-2); border-radius: 100px; padding: 7px 14px 7px 12px;
  background: rgba(255,255,255,0.02);
}
.hero__come::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px rgba(22, 93, 191,0.18);
}
.hero__come span { display: none; }

/* --- Primeira dobra com veículo em destaque --- */
.hero {
  isolation: isolate;
  min-height: calc(100svh - 126px);
  padding: 56px 0 38px;
  background: #03050a;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background-image: url("Identidade%20Visual/hero-first-fold.jpeg");
  background-position: right 38%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.42) brightness(1.18) contrast(1.04);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 5, 10, 0.98) 0%, rgba(3, 5, 10, 0.88) 32%, rgba(3, 5, 10, 0.3) 60%, rgba(3, 5, 10, 0.04) 82%, rgba(3, 5, 10, 0) 100%),
    linear-gradient(180deg, rgba(3, 5, 10, 0.12) 0%, rgba(3, 5, 10, 0.04) 48%, rgba(3, 5, 10, 0.66) 100%);
}

.hero > .wrap {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero__watermark {
  display: none;
}

.hero__split {
  display: block;
  min-height: auto;
  max-width: 610px;
}

.hero__copy {
  max-width: 610px;
  gap: 18px;
}

.hero__title {
  max-width: 10.8ch;
  font-size: 64px;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 44ch;
  font-size: 17px;
}

.hero__come {
  margin-top: 2px;
  letter-spacing: 0;
}

.hero__ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 250px));
  gap: 14px;
  max-width: 520px;
}

.hero__ctas .btn {
  width: 100%;
  min-height: 64px;
  justify-content: space-between;
  border-radius: 6px;
  letter-spacing: 0;
}

.hero__trust {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(132px, 0.82fr) repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__trust-item {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.16);
}

.hero__trust-item:first-child {
  border-left: 0;
}

.hero__trust-item--years {
  align-items: flex-start;
  text-align: left;
}

.hero__trust-item strong {
  font-size: 46px;
  color: var(--red);
}

.hero__trust-item span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.hero__trust-icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .hero__title {
    font-size: 60px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 60px 0 42px;
  }

  .hero::before {
    background-position: center right;
    background-size: cover;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 5, 10, 0.98) 0%, rgba(3, 5, 10, 0.84) 48%, rgba(3, 5, 10, 0.32) 100%),
      linear-gradient(180deg, rgba(3, 5, 10, 0.12) 0%, rgba(3, 5, 10, 0.86) 100%);
  }

  .hero__title {
    font-size: 54px;
  }

  .hero__trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__trust-item--years {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 8px;
    justify-content: stretch;
    padding-inline: 14px;
  }

  .nav__brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 100%;
  }

  .brandmark__word {
    max-width: 100%;
    font-size: 22px;
  }

  .nav__cta {
    display: contents;
  }

  .nav__cta .btn--primary {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    min-width: 92px;
    max-width: none;
  }

  .nav__call {
    grid-column: 2;
    grid-row: 1;
  }

  html[lang="pt-BR"] .nav__cta .btn--primary::before {
    content: 'Orçar';
  }

  .hero {
    padding: 34px 0 30px;
  }

  .hero::before {
    background-image: url("Identidade%20Visual/hero-first-fold-mobile.jpeg");
    background-size: cover;
    background-position: center 22%;
    filter: saturate(1.42) brightness(1.22) contrast(1.04);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 5, 10, 0.95) 0%, rgba(3, 5, 10, 0.78) 30%, rgba(3, 5, 10, 0.32) 58%, rgba(3, 5, 10, 0.04) 80%, rgba(3, 5, 10, 0) 100%),
      linear-gradient(180deg, rgba(3, 5, 10, 0.34) 0%, rgba(3, 5, 10, 0.05) 26%, rgba(3, 5, 10, 0.08) 52%, rgba(3, 5, 10, 0.68) 80%, #03050a 97%);
  }

  .hero > .wrap {
    justify-content: flex-start;
  }

  .hero__copy {
    max-width: 360px;
  }

  .hero__title {
    max-width: 10.2ch;
    font-size: 38px;
  }

  .hero__lead {
    max-width: 31ch;
    font-size: 15px;
  }

  .hero__come {
    max-width: 100%;
    padding: 8px 14px 8px 12px;
    font-size: 11px;
    line-height: 1.25;
  }

  .hero__ctas {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero__ctas .btn {
    min-height: 62px;
  }

  .hero__trust {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
    padding-top: 16px;
  }

  .hero__trust-item {
    flex: 1 1 0;
    min-width: 0;
    min-height: 76px;
    padding: 0 4px;
    gap: 7px;
    border-left: 1px solid rgba(255,255,255,0.14);
  }

  .hero__trust-item:first-child {
    border-left: 0;
  }

  .hero__trust-item--years {
    flex: 1 1 0;
    align-items: flex-start;
    text-align: left;
    min-height: 76px;
    padding: 0 8px 0 0;
    border-left: 0;
  }

  .hero__trust-item--years strong {
    font-size: 28px;
    line-height: 1;
  }

  .hero__trust-icon {
    width: 26px;
    height: 26px;
  }

  .hero__trust-item span {
    font-size: 8.5px;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 36px;
  }
}

/* --- Seção "Vamos até você" (atendimento) --- */
.cometo { padding: 96px 0; background: var(--bg-3); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.cometo__watermark {
  position: absolute; bottom: -6%; left: -1%;
  font-family: 'Anton', sans-serif; font-size: clamp(90px, 16vw, 230px);
  line-height: 1; color: var(--ink); opacity: 0.025; letter-spacing: -0.03em;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.cometo__inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cometo__icon {
  width: 56px; height: 56px; margin: 0 auto 26px; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--red); border-radius: 100px;
  color: var(--red); font-size: 26px;
}
.cometo h2 { margin: 0 0 18px; }
.cometo p { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 56ch; margin: 0 auto; }
.cometo__chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.cometo__chips span {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink-2); border: 1px solid var(--line-2);
  padding: 11px 20px; border-radius: 2px;
}
@media (max-width: 860px) { .cometo { padding: 64px 0; } }

/* --- Foco e escopo (seção 11) --- */
.scope { padding: 100px 0; background: var(--bg); border-top: 1px solid var(--line); }
.scope__inner { max-width: 920px; }
.scope h2 { margin: 16px 0 22px; }
.scope p { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 72ch; }
.scope p strong { color: var(--ink); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   LUSTROUS AUTO DETAILING — WHITE THEME OVERRIDES
   Página predominantemente branca; grafite e prata escovada
   (da logo) como acentos; âncoras escuras só em Agendamento
   e Rodapé. Este bloco carrega por último e vence o tema antigo.
   ════════════════════════════════════════════════════════════ */

/* --- Botões --- */
.btn--primary { background: var(--graphite); color: #FFFFFF; }
.btn--primary:hover { background: #232A34; }
.btn--primary .arrow { background: rgba(255,255,255,0.16); }
.btn--ghost { border-color: rgba(18,22,28,0.22); color: var(--ink); }
.btn--ghost:hover { border-color: var(--red); color: var(--red-2); }
.btn--ghost .arrow { background: rgba(18,22,28,0.07); }
.btn--white { background: #FFFFFF; color: var(--ink); }
.btn--white:hover { background: #E7EAEE; color: var(--ink); }

/* --- Topbar clara --- */
.topbar { background: var(--bg-2); border-bottom: 1px solid var(--line); color: var(--ink-2); }
.topbar__social a { border-color: var(--line-2); color: var(--ink-2); }
.topbar__social a:hover { background: var(--graphite); color: #fff; border-color: var(--graphite); }
.topbar__lang a { color: var(--muted); }
.topbar__lang a:hover, .topbar__lang a.active { color: var(--ink); }

/* --- Nav branca + logo como placa --- */
.nav {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
}
.brandmark__logo {
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(18,22,28,0.08), 0 2px 6px rgba(18,22,28,0.14);
}
.nav .brandmark__word--blue { color: var(--ink); letter-spacing: 0.06em; }

/* --- Título: palavras de destaque em cromo escovado --- */
.display .red, .display .accent,
.about__content h2 .red, .proc__content h2 .red,
.pricing__head h2 .red, .faq__left h2 .red, .blog__head h2 .red,
.hero__title .accent {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* --- Hero: estúdio branco com emblema --- */
.hero {
  min-height: auto;
  padding: 72px 0 44px;
  background:
    radial-gradient(ellipse 55% 60% at 80% 20%, rgba(87,97,110,0.12), transparent 65%),
    linear-gradient(180deg, #FFFFFF 0%, #F3F5F7 100%);
}
.hero::before, .hero::after { display: none; content: none; }
.hero__split {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: none;
}
.hero__emblem { display: flex; justify-content: center; align-items: center; }
.hero__emblem img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15,20,28,0.30), 0 0 0 1px rgba(15,20,28,0.06);
}
.hero__come {
  border-color: var(--line-2);
  background: #F2F4F7;
  color: var(--ink-2);
}
.hero__come::before { background: var(--red); box-shadow: 0 0 0 4px rgba(87,97,110,0.18); }
.hero__trust { border-top: 1px solid rgba(12,16,22,0.10); }
.hero__trust-item { border-left: 1px solid rgba(12,16,22,0.10); }
.hero__trust-item:first-child { border-left: 0; }
.hero__trust-item strong { color: var(--red); }
.hero__trust-item span { color: var(--ink); }
.hero__trust-icon { stroke: var(--red); }
@media (max-width: 980px) {
  .hero__split { display: flex; flex-direction: column; align-items: stretch; gap: 0; max-width: 610px; }
  .hero__emblem { display: block; order: -1; margin: 0 0 16px; min-width: 0; }
  .hero__emblem img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15,20,28,0.16);
  }
}
@media (max-width: 640px) {
  .hero { padding: 24px 0 28px; }
  .hero__copy { max-width: 100%; }
  .hero__emblem { margin-bottom: 14px; }
  .hero__emblem img { max-height: 210px; object-fit: cover; object-position: center 44%; box-shadow: 0 8px 20px rgba(15,20,28,0.15); }
  .hero__trust-item { border-left: 1px solid rgba(12,16,22,0.10); }
  .hero__trust-item:first-child, .hero__trust-item--years { border-left: 0; }
}

/* --- Marcas d'água em cinza sobre branco --- */
.showcase__watermark, .final-cta__watermark { color: rgba(13,18,26,0.035); }

/* --- Cards em destaque: grafite com prata --- */
.fcard--featured { background: var(--graphite); border-color: var(--graphite); color: #F2F4F7; }
.fcard--featured:hover { background: #1C222B; border-color: #1C222B; }
.fcard--featured .fcard__icon { stroke: #C9D0D8; }
.fcard--featured .fcard__body { color: rgba(255,255,255,0.72); }

.about__stats { background: var(--graphite); color: #F2F4F7; }

.plan--featured { background: var(--graphite); border-color: var(--graphite); color: #F2F4F7; }
.plan--featured .plan__name { color: #FFFFFF; }
.plan--featured .plan__badge { background: rgba(255,255,255,0.10); color: #D6DBE1; }
.plan--featured .plan__features li::before { background: #C9D0D8; }
.plan--featured .plan__features li strong { color: #FFFFFF; }

/* --- Showcase: legenda sobre foto continua clara --- */
.showcase__caption-title { color: #FFFFFF; }
.showcase__caption-desc { color: rgba(255,255,255,0.85); }

/* --- Processo --- */
.proc__item[open] .pcaret { color: #FFFFFF; }

/* --- Depoimentos: placa escura de exposição em seção clara --- */
.tst__rating { background: rgba(87,97,110,0.08); border-color: var(--line-2); }
.tst__stage {
  background: radial-gradient(ellipse 70% 55% at 50% 45%, #2A313B, #10141A 78%);
  border-radius: 18px;
  overflow: hidden;
}
.tst__car-fade {
  background: linear-gradient(180deg, transparent 0%, rgba(16,20,26,0.5) 45%, rgba(16,20,26,0.95) 80%, #10141A 100%);
}

/* --- Newsletter clara --- */
.news {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(87,97,110,0.10), transparent 70%),
    var(--bg);
}
.news::before, .news::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2' height='2' viewBox='0 0 2 2'><rect width='1' height='1' fill='%23d5dae0'/></svg>");
  opacity: 0.35;
}

/* --- Chips --- */
.chiprow span:hover { border-color: var(--red); color: var(--ink); background: rgba(87,97,110,0.07); }

/* --- Agendamento: âncora escura, texto claro reafirmado --- */
.appoint { background: var(--dark-bg); border-block: 1px solid var(--dark-line); color: #E7EAEF; }
.appoint .eyebrow { color: #A8B1BC; }
.appoint .eyebrow::before { background: #A8B1BC; }
.appoint .display { color: #FFFFFF; }
.appoint .display .red {
  background: linear-gradient(103deg, #8A95A1 0%, #E8ECF1 45%, #FFFFFF 52%, #B9C2CC 62%, #77828E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.appoint__lead { color: rgba(255,255,255,0.78); }
.appoint__intro-title { color: #FFFFFF; }
.appoint__intro-list li { color: rgba(255,255,255,0.85); }
.appoint__intro-list li::before { background: #8A95A1; }
.appoint__form {
  background:
    linear-gradient(165deg, rgba(122,133,146,0.14) 0%, transparent 50%),
    rgba(13,16,21,0.80);
  border: 1px solid rgba(122,133,146,0.30);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 80px rgba(122,133,146,0.10);
}
.appoint__form::before {
  background: linear-gradient(90deg, #8A95A1 0%, #C9D0D8 50%, transparent 100%);
}
.appoint__form h3 { color: #FFFFFF; }
.appoint__form-eyebrow { color: #A8B1BC; }
.appoint__form input, .appoint__form select, .appoint__form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #FFFFFF;
}
.appoint__form input::placeholder, .appoint__form textarea::placeholder { color: rgba(255,255,255,0.42); }
.appoint__form input:focus, .appoint__form select:focus, .appoint__form textarea:focus {
  border-color: #C9D0D8;
  box-shadow: 0 0 0 3px rgba(201,208,216,0.15);
}
.appoint__form select option { color: #12161C; background: #FFFFFF; }
.appoint__form .btn--primary { background: #F2F4F7; color: #12161C; }
.appoint__form .btn--primary:hover { background: #FFFFFF; }
.appoint__form .btn--primary .arrow { background: rgba(18,22,28,0.10); }

/* --- Rodapé: âncora escura --- */
.footer { background: var(--dark-bg); border-top: 1px solid var(--dark-line); color: #A9B1BB; }
.footer__top { border-bottom: 1px solid var(--dark-line); }
.footer .brandmark__word--blue { color: #FFFFFF; }
.footer .brandmark__logo { mix-blend-mode: lighten; box-shadow: none; border-radius: 0; }
.footer__tagline { color: #8A929D; }
.footer__col h4 { color: #FFFFFF; }
.footer__col a { color: #A9B1BB; }
.footer__col a:hover { color: #FFFFFF; }
.footer__social a { border-color: var(--dark-line); color: #C3CAD3; }
.footer__social a:hover { background: #FFFFFF; border-color: #FFFFFF; color: #12161C; }
.footer__contact-icon { background: #12161D; border-color: var(--dark-line); color: #A8B1BC; }
.footer__contact small { color: #78818C; }
.footer__contact strong { color: #E4E8ED; }
.footer__bottom { color: #78818C; }
.footer__legal a { color: #78818C; }
.footer__legal a:hover { color: #FFFFFF; }

/* --- Rótulo mobile do botão de orçamento por idioma --- */
@media (max-width: 640px) {
  html[lang="es"] .nav__cta .btn--primary::before { content: 'Cotizar'; }
}

/* --- Endereço na seção "Vamos até você" --- */
.cometo__address {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--ink);
}

/* --- Seletor de idioma com bandeiras --- */
.topbar__lang { gap: 8px; }
.topbar__lang a {
  display: inline-flex;
  padding: 0;
  line-height: 0;
  border-radius: 3px;
  opacity: 0.45;
  filter: saturate(0.55);
  transition: opacity .2s, filter .2s, transform .2s;
}
.topbar__lang a:hover { opacity: 1; filter: none; transform: translateY(-1px); }
.topbar__lang a.active { opacity: 1; filter: none; box-shadow: 0 0 0 2px rgba(18,22,28,0.18); }
.topbar__lang .flag {
  width: 21px;
  height: auto;
  display: block;
  border-radius: 2.5px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
