:root {
  --bg: #0a0a0a;
  --paper: #111111;
  --ink: #f8f9fa;
  --muted: #a2a2a2;
  --line: #242424;
  --red: #e6b741;
  --red-dark: #cfa43a;
  --charcoal: #0a0a0a;
  --steel: #e6b741;
  --green: #e6b741;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid rgba(230, 183, 65, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  color: var(--red);
}

.brand span {
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--red);
  border-color: var(--red);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.btn-primary {
  color: #111;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(230, 183, 65, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  background: rgba(25, 24, 23, 0.76);
}

.btn-outline {
  color: #fff;
  background: #0a0a0a;
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--red);
  box-shadow: 0 10px 22px rgba(25, 24, 23, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  padding: 11px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--red);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-locacao-impressoras-campinas.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.18) 78%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.08));
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 56px 0 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--red);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin: 46px 0 0;
  background: rgba(230, 183, 65, 0.24);
  border: 1px solid rgba(230, 183, 65, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-proof div {
  padding: 16px;
  background: rgba(10, 10, 10, 0.62);
}

.hero-proof dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.hero-proof dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #111;
  border-top: 1px solid rgba(230, 183, 65, 0.18);
  border-bottom: 1px solid rgba(230, 183, 65, 0.18);
}

.signal-bar a {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 18px clamp(18px, 3vw, 36px);
  color: #fff;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.signal-bar a:hover {
  color: #111;
  background: var(--red);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.muted {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  background: #141414;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-copy p,
.split-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.model-line {
  color: #e8d293 !important;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--red-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.service-card,
.plan-card,
.steps-grid article,
.coverage-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px 16px;
  padding: 22px;
}

.feature-list article span,
.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #111;
  background: var(--steel);
  font-weight: 900;
}

.feature-list article h3,
.feature-list article p {
  grid-column: 2;
}

.feature-list article p {
  margin: 0;
  color: var(--muted);
}

.compact article {
  grid-template-columns: 48px 1fr;
}

.problem-grid,
.benefits-grid,
.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.solution-list {
  margin-top: 24px;
}

.metric-panel {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(230, 183, 65, 0.28);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.metric-main {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.metric-main strong {
  display: block;
  color: var(--red);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
}

.metric-main span,
.metric-grid span {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.metric-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.monitor-section {
  align-items: center;
}

.monitor-visual {
  min-height: 0;
}

.monitor-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  filter: grayscale(1) contrast(1.05) brightness(0.92);
}

.included-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -10px 0 24px;
  padding: 14px;
  border: 1px solid rgba(230, 183, 65, 0.26);
  border-radius: var(--radius);
  background: rgba(230, 183, 65, 0.06);
}

.included-strip span {
  color: var(--muted);
  font-weight: 800;
}

.included-strip strong {
  padding: 8px 11px;
  border-radius: 999px;
  color: #111;
  background: var(--red);
  font-size: 0.88rem;
}

.sales-section {
  border-top: 1px solid rgba(230, 183, 65, 0.12);
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.compare-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.compare-card.winner {
  border-color: rgba(230, 183, 65, 0.56);
  box-shadow: var(--shadow);
}

.compare-card ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  margin: 13px 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 900;
}

.compare-card.avoid li::before {
  content: "-";
  color: rgba(255, 255, 255, 0.42);
}

.compare-card.winner li::before {
  content: "+";
  color: var(--red);
}

.compare-card .btn {
  margin-top: 18px;
}

.scroll-hint {
  display: none;
}

.comparison-table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  color: #fff;
  font-weight: 900;
}

.comparison-table th {
  color: var(--muted);
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  color: var(--red);
  font-weight: 900;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.pricing-grid,
.service-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card,
.service-card,
.steps-grid article {
  padding: 26px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan-card.highlighted {
  border-color: rgba(230, 183, 65, 0.52);
  box-shadow: var(--shadow);
}

.plan-label,
.service-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.plan-card p:not(.plan-label),
.service-card p:not(.service-kicker),
.steps-grid p {
  color: var(--muted);
}

.service-card h3,
.plan-card h3,
.steps-grid h3,
.compare-card h3 {
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.plan-card ul,
.check-list {
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
}

.plan-card li,
.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.plan-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.plan-card .btn {
  margin-top: auto;
}

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

.steps-grid article {
  min-height: 230px;
}

.steps-grid h3 {
  margin-top: 22px;
}

.coverage-panel {
  padding: 26px;
  box-shadow: var(--shadow);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.city-list li {
  padding: 9px 12px;
  border-radius: 999px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(28px, 6vw, 86px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(64px, 9vw, 118px);
  padding: clamp(36px, 6vw, 64px);
  border-radius: var(--radius);
  background: #111;
  color: #fff;
  border: 1px solid rgba(230, 183, 65, 0.22);
}

.quote-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 0.92rem;
}

.quote-form label:has(textarea),
.quote-form button,
.quote-email,
.form-note {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 13px;
  outline: none;
}

.quote-form select option {
  color: #111;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.58)),
    url("assets/hero-locacao-impressoras-campinas.png") center right / cover;
}

.supplies-hero {
  background-position: center center;
}

.page-hero-inner {
  width: min(850px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 96px 0 76px;
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.site-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: #050505;
  border-top: 1px solid rgba(230, 183, 65, 0.16);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(200px, 0.72fr) minmax(290px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  padding: 62px clamp(22px, 5vw, 72px) 58px;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--red);
}

.footer-brand {
  margin-bottom: 24px;
  color: #fff;
}

.footer-brand span {
  color: #fff;
  font-size: 1.14rem;
}

.footer-brand strong {
  color: var(--red);
}

.site-footer p {
  margin: 0;
}

.footer-about p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-services,
.footer-contact {
  display: grid;
  align-content: start;
}

.footer-services a {
  margin-bottom: 12px;
}

.footer-contact {
  font-style: normal;
}

.footer-contact-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
  margin-bottom: 13px !important;
  color: rgba(255, 255, 255, 0.64);
  overflow-wrap: anywhere;
}

.footer-contact-row::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 0.52em;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 183, 65, 0.08);
}

.footer-copy {
  max-width: none !important;
  padding: 28px 18px 30px;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid rgba(230, 183, 65, 0.12);
  text-align: center;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  font-weight: 900;
}

.whatsapp-icon {
  display: none;
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  background: #20bd5a;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand span {
    max-width: 210px;
    white-space: normal;
    line-height: 1.05;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 20px;
    background: #0a0a0a;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(25, 24, 23, 0.16);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(15, 14, 12, 0.9), rgba(15, 14, 12, 0.58));
  }

  .hero-content {
    width: min(700px, calc(100% - 36px));
    margin: 0 auto;
    padding: 78px 0 82px;
  }

  h1 {
    font-size: clamp(2.45rem, 10vw, 4.5rem);
  }

  .signal-bar,
  .pricing-grid,
  .service-grid,
  .steps-grid,
  .compare-grid,
  .problem-grid,
  .benefits-grid,
  .segment-grid,
  .metric-grid,
  .intro-grid,
  .split-section,
  .quote-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .signal-bar a {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .steps-grid article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .main-nav {
    top: 68px;
  }

  .hero-content {
    padding: 56px 0 64px;
  }

  .hero-actions,
  .btn,
  .header-cta {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    padding: 13px 15px;
  }

  .included-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
  }

  .included-strip span {
    grid-column: 1 / -1;
  }

  .included-strip strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
  }

  .scroll-hint {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: -18px 0 14px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .scroll-hint span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 22px;
    border: 1px solid rgba(230, 183, 65, 0.42);
    border-radius: 999px;
    animation: nudge-scroll 1.45s ease-in-out infinite;
  }

  .comparison-table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 44px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.96));
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  .muted {
    padding-left: 14px;
    padding-right: 14px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .feature-list article h3,
  .feature-list article p {
    grid-column: auto;
  }

  .quote-section {
    width: calc(100% - 28px);
    padding: 26px 18px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .benefits-grid,
  .segment-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero-inner {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 72px 0 54px;
  }

  .footer-main {
    padding: 38px 18px;
  }

  .footer-copy {
    padding: 22px 18px 96px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .whatsapp-icon {
    display: block;
  }
}

@keyframes nudge-scroll {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}
