/* ===== Variáveis ===== */
:root {
  --white: #ffffff;
  --gray-light: #f4f4f2;
  --gray-mid: #e4e3de;
  --ink: #1c1c1c;
  --ink-soft: #5c5c58;
  --accent: #d9731f;
  --accent-dark: #b85f18;
  --accent-tint: #fbe7d3;
  --whatsapp: #25d366;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

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

section { scroll-margin-top: 84px; }

/* ===== Tipografia utilitária ===== */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.label-tag::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.label-tag--light { color: var(--accent); }
.label-tag--center { justify-content: center; width: 100%; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: var(--ink);
}
.section-title--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
  white-space: nowrap;
}
.link-arrow:hover { border-color: var(--accent-dark); }

.check-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 30px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--accent-tint); }
.btn--ghost-light {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--lg { padding: 19px 38px; font-size: 15.5px; }
.btn--sm { padding: 10px 18px; font-size: 12.5px; }
.btn--block { width: 100%; }

/* ===== Tech frame (marcas de canto tipo prancha técnica) ===== */
.tech-frame { position: relative; }
.tech-frame::before,
.tech-frame::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid var(--accent);
  z-index: 3;
  pointer-events: none;
}
.tech-frame::before { top: -9px; left: -9px; border-right: none; border-bottom: none; }
.tech-frame::after { bottom: -9px; right: -9px; border-left: none; border-top: none; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  border-bottom-color: var(--gray-mid);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16.5px;
  color: var(--white);
  line-height: 1.25;
  transition: color .3s ease;
}
.logo__text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.75);
  text-transform: none;
}
.header.is-scrolled .logo__text { color: var(--ink); }
.header.is-scrolled .logo__text small { color: var(--ink-soft); }
.logo--footer .logo__text { color: var(--ink); }
.logo--footer .logo__text small { color: var(--ink-soft); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.nav__cta):not(.nav__whats) {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  transition: color .3s ease, opacity .2s ease;
  opacity: 0.92;
}
.nav > a:not(.nav__cta):not(.nav__whats):hover { opacity: 1; }
.header.is-scrolled .nav > a:not(.nav__cta):not(.nav__whats) { color: var(--ink); }

.nav__cta {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 8px 16px;
  border-radius: 3px;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.header.is-scrolled .nav__cta { border-color: var(--ink); color: var(--ink); }
.header.is-scrolled .nav__cta:hover { background: var(--ink); color: var(--white); }

.nav__whats {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transition: background .25s ease;
}
.nav__whats svg { width: 17px; height: 17px; }
.nav__whats:hover { background: var(--accent-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--white); transition: all .3s ease; }
.header.is-scrolled .menu-toggle span { background: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  padding: 150px 0 60px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(35%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 64px);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,15,13,0.82) 0%, rgba(17,15,13,0.72) 45%, rgba(17,15,13,0.9) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 9vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 25px);
  color: var(--accent);
  margin-bottom: 18px;
}
.hero__lede {
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.88);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero__author {
  position: relative;
  z-index: 2;
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 760px;
}
.hero__author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.hero__author strong { display: block; font-family: var(--font-display); font-size: 14.5px; }
.hero__author span { font-size: 12.5px; color: rgba(255,255,255,0.7); }

/* ===== Stats ===== */
.stats { position: relative; padding: 70px 0; background: var(--ink); overflow: hidden; }
.stats__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  filter: grayscale(100%);
}
.stats__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.02);
}
.stat {
  text-align: center;
  padding: 20px 16px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.stat:first-child { border-left: none; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
}

/* ===== Sobre ===== */
.sobre { padding: 120px 0 100px; }
.sobre__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 76px; align-items: center; }
.sobre__img { position: relative; }
.sobre__img img { border-radius: 2px; width: 100%; height: 480px; object-fit: cover; }
.sobre__badge {
  position: absolute;
  left: -18px; bottom: -18px;
  background: var(--accent);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.sobre__badge strong { font-family: var(--font-display); font-size: 30px; font-weight: 900; line-height: 1; }
.sobre__badge span { font-size: 11.5px; font-weight: 600; line-height: 1.3; }
.sobre__texto h2 { margin-bottom: 20px; }
.sobre__texto p { color: var(--ink-soft); margin-bottom: 15px; font-size: 15.5px; }

/* ===== Serviços ===== */
.servicos { padding: 110px 0; background: var(--gray-light); }
.servicos__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; }
.servico {
  background: var(--white);
  padding: 34px 26px;
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.servico:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(28,28,28,0.08); }
.servico__index {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.servico__icon {
  width: 50px; height: 50px;
  border: 1.5px dashed var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.servico__icon svg { width: 24px; height: 24px; }
.servico h3 {
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.25;
}
.servico p { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; flex-grow: 1; }
.servico__link { font-size: 13px; font-weight: 700; color: var(--accent-dark); }
.servico__link:hover { text-decoration: underline; }

/* ===== CTA strip ===== */
.cta-strip { background: var(--ink); padding: 30px 0; }
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.cta-strip__inner p {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

/* ===== Depoimentos ===== */
.depoimentos { padding: 120px 0 110px; }
.depoimentos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; }
.depoimento {
  background: var(--gray-light);
  padding: 34px 30px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.depoimento__stars { color: var(--accent); font-size: 17px; letter-spacing: 3px; margin-bottom: 16px; }
.depoimento p { font-size: 15px; line-height: 1.6; color: var(--ink); margin-bottom: 22px; flex-grow: 1; }
.depoimento__autor { display: flex; align-items: center; gap: 12px; }
.depoimento__autor img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.depoimento__autor strong { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.depoimento__autor span { font-size: 12px; color: var(--ink-soft); }

/* ===== Blog ===== */
.blog { padding: 110px 0; background: var(--gray-light); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.blog__card { background: var(--white); border: 1px solid var(--gray-mid); }
.blog__card img { height: 190px; width: 100%; object-fit: cover; }
.blog__body { padding: 22px 22px 26px; }
.blog__data { font-size: 12px; color: var(--accent-dark); font-weight: 700; letter-spacing: 0.04em; }
.blog__body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 10px 0 14px;
  line-height: 1.32;
}

/* ===== FAQ ===== */
.faq { padding: 120px 0; }
.faq__container { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 60px; align-items: start; }
.faq__head { position: sticky; top: 110px; }
.faq__lede { color: var(--ink-soft); font-size: 15px; margin-top: 6px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--gray-mid); }
.faq__item:first-child { border-top: 1px solid var(--gray-mid); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  font-weight: 700;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__answer p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 14.5px; max-width: 640px; }
.faq__item.is-open .faq__answer { max-height: 300px; }

/* ===== CTA final ===== */
.cta-final { position: relative; padding: 130px 0; text-align: center; overflow: hidden; }
.cta-final__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(60%);
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,95,24,0.93), rgba(28,28,28,0.93));
}
.cta-final__content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-final__content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cta-final__content p { color: rgba(255,255,255,0.9); font-size: 16.5px; margin-bottom: 34px; }

/* ===== Contato ===== */
.contato { padding: 120px 0 110px; background: var(--gray-light); }
.contato__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 76px; }
.contato__lede { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 36px; max-width: 420px; }
.contato__info { display: flex; flex-direction: column; gap: 18px; }
.contato__info li { display: flex; flex-direction: column; gap: 4px; }
.contato__info strong {
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.contato__info span { font-size: 15px; color: var(--ink); }

.contato__form {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row--split > div { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.form-row input, .form-row select, .form-row textarea {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  border-radius: 2px;
  resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-success {
  display: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 2px;
}
.form-success.is-visible { display: block; }

/* ===== Footer ===== */
.footer { padding: 64px 0 0; background: var(--white); border-top: 1px solid var(--gray-mid); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer__brand p { margin-top: 16px; color: var(--ink-soft); font-size: 14px; max-width: 320px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; padding-top: 6px; }
.footer__nav a { font-size: 14px; color: var(--ink-soft); }
.footer__nav a:hover { color: var(--accent-dark); }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 6px; }
.footer__contact span { font-size: 13.5px; color: var(--ink-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 32px;
  border-top: 1px solid var(--gray-mid);
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ===== WhatsApp flutuante (desktop) ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 150;
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ===== Barra fixa mobile ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: var(--ink);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 3px;
}
.mobile-cta-bar svg { width: 20px; height: 20px; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsivo ===== */
@media (max-width: 980px) {
  .sobre__grid, .contato__grid { grid-template-columns: 1fr; gap: 50px; }
  .sobre__img img { height: 380px; }
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos__grid, .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(odd) { border-left: none; }
  .faq__container { grid-template-columns: 1fr; gap: 30px; }
  .faq__head { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .header { padding: 16px 0; }
  .header.is-scrolled { padding: 12px 0; }
  .logo__text { font-size: 14.5px; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 82%; height: 100vh;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 0 40px;
    transition: right .4s ease;
  }
  .nav.is-open { right: 0; }
  .nav > a:not(.nav__cta):not(.nav__whats) { color: var(--white); font-size: 17px; opacity: 1; }
  .nav__cta { border-color: rgba(255,255,255,0.4); color: var(--white); }
  .nav__whats { order: -1; }
  .menu-toggle { display: flex; }
  .header:not(.is-scrolled) .menu-toggle span { background: var(--white); }

  .hero { padding: 130px 0 100px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 8px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px 12px; border-left: none !important; border-top: 1px solid rgba(255,255,255,0.14); }
  .stat:first-child, .stat:nth-child(2) { border-top: none; }

  .servicos__grid, .depoimentos__grid, .blog__grid { grid-template-columns: 1fr; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }

  .form-row--split { grid-template-columns: 1fr; }
  .contato__form { padding: 28px 22px; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }

  .whatsapp-float { display: none; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 78px; }
}
