@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --max: 1180px;
  --pad: clamp(18px, 3vw, 32px);

  --bg: #eef1f5;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #0f141a;
  --surface-dark-soft: #151c24;

  --text: #101826;
  --muted: #5b6778;

  --line: rgba(16, 24, 38, 0.08);
  --line-strong: rgba(16, 24, 38, 0.14);

  --accent: #111111;
  --accent-strong: #000000;
  --accent-soft: rgba(17, 17, 17, 0.08);
  --accent-glow: rgba(17, 17, 17, 0.18);
  --teal: #2b2b2b;
  --success: #1f1f1f;

  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 12px 26px rgba(15, 23, 42, 0.08);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --ring: 0 0 0 4px rgba(0, 0, 0, 0.14);

  --wa-size: 62px;
  --wa-icon: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
  font: 16px/1.7 "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at left top, rgba(0, 0, 0, 0.08), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(0, 0, 0, 0.05), transparent 26%),
    linear-gradient(180deg, #fbfbfb 0%, #f1f1f1 48%, #ececec 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 85%);
}

body::after {
  inset: auto auto -140px 50%;
  width: min(640px, 70vw);
  height: min(640px, 70vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent 68%);
  transform: translateX(-50%);
  filter: blur(12px);
}

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

a {
  color: inherit;
}

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

:focus {
  outline: none;
}

:focus-visible {
  box-shadow: var(--ring);
  border-radius: 14px;
}

h1,
h2,
h3,
h4,
.brand-text strong,
.nav a,
.footer-title,
.footer-links a,
.eyebrow,
.card-step,
.panel-kicker {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(2.65rem, 6vw, 5rem);
  line-height: 1.02;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  margin: 0 0 14px;
}

.wrap {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin: 0 auto;
}

main.wrap {
  padding-top: 34px;
  padding-bottom: 88px;
  position: relative;
}

.lead {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.muted {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: #202020;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.08);
}

.section {
  position: relative;
  padding: clamp(34px, 6vw, 78px) 0;
}

.section + .section {
  border-top: 1px solid rgba(16, 24, 38, 0.06);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 720px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.panel,
.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  backdrop-filter: blur(18px);
}

.panel {
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.visual-stack .panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:has(.card-icon) {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.card:has(.card-icon) p {
  max-width: 28ch;
  margin-inline: auto;
}

.card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.18), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.12);
}

.card:hover::after {
  opacity: 1;
  transform: none;
}

.card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  padding: 14px;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.card-step,
.panel-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #202020;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

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

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

.split {
  display: grid;
  gap: 24px;
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.visual-card,
.figure,
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  background: #dde5ed;
}

.visual-card img,
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card img {
  min-height: 320px;
}

.grid + .visual-card {
  margin-top: 20px;
}

.figure img {
  height: 420px;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.hero-shell {
  display: grid;
  gap: 28px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.hero-copy {
  align-self: center;
  padding: clamp(16px, 3vw, 28px) 0;
}

.hero-copy h1 {
  max-width: 12.5ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span,
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 24, 38, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  border: 1px solid rgba(16, 24, 38, 0.08);
  border-radius: clamp(30px, 4vw, 40px);
  background: linear-gradient(145deg, rgba(14, 20, 26, 0.98), rgba(25, 34, 44, 0.86));
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.hero-panel::before,
.page-hero::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: auto auto 25% -8%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(4px);
}

.hero-panel::after,
.page-hero::after,
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.hero-panel-copy {
  position: relative;
  z-index: 1;
  padding: 30px 30px 0;
}

.hero-panel-copy .panel-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.hero-panel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-img {
  width: 100%;
  height: clamp(320px, 44vw, 520px);
  object-fit: cover;
  opacity: 0.92;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 248, 252, 0.72));
  box-shadow: var(--shadow-md);
}

.page-hero-grid {
  display: grid;
  gap: 22px;
  align-items: start;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
}

.hero-aside {
  display: grid;
  gap: 12px;
}

.hero-aside .fact-pill {
  display: grid;
  gap: 6px;
  align-items: start;
  padding: 16px 18px;
}

.hero-aside strong {
  color: var(--text);
  font-size: 1rem;
}

.hero-aside span {
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb .sep {
  opacity: 0.42;
}

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

.panel .actions,
.card .actions,
.cta-banner .actions {
  justify-content: center;
}

.btn,
.btn-ghost,
.header-cta,
button.btn,
button.btn-ghost,
input.btn,
input.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.btn,
.header-cta,
button.btn,
input.btn {
  background: linear-gradient(135deg, #1b1b1b, #000000);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.btn-ghost,
button.btn-ghost,
input.btn-ghost {
  border-color: rgba(16, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn:hover,
.btn-ghost:hover,
.header-cta:hover,
button.btn:hover,
button.btn-ghost:hover,
input.btn:hover,
input.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn:hover,
.header-cta:hover,
button.btn:hover,
input.btn:hover {
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.22);
}

.btn-ghost:hover,
button.btn-ghost:hover,
input.btn-ghost:hover {
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: var(--shadow-md);
}

.btn:active,
.btn-ghost:active,
.header-cta:active,
button.btn:active,
button.btn-ghost:active,
input.btn:active,
input.btn-ghost:active {
  transform: translateY(0);
}

.link {
  color: var(--accent-strong);
  text-decoration: none;
  text-underline-offset: 4px;
  transition:
    color 0.18s ease,
    text-decoration-color 0.18s ease;
}

.link:hover {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5f6876;
}

.list li {
  position: relative;
  min-height: 24px;
  padding-left: 22px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.08);
  transform: translateY(-50%);
}

.check-list li {
  padding-left: 34px;
}

.check-list li::before {
  top: 0.95rem;
  width: 20px;
  height: 20px;
  background: var(--surface-strong);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.95rem;
  width: 6px;
  height: 11px;
  border: solid var(--accent-strong);
  border-width: 0 2px 2px 0;
  transform: translateY(-62%) rotate(45deg);
}

.process-list {
  counter-reset: step;
  gap: 18px;
}

.process-list li {
  min-height: 42px;
  padding-left: 58px;
}

.process-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  top: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: none;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: var(--shadow-sm);
}

.process-list li::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(16, 24, 38, 0));
}

.process-list li:last-child::after {
  display: none;
}

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

.thumb {
  width: 110px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.thumb img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.thumb:hover,
.thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: var(--shadow-md);
}

.logos {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.logo-card img {
  width: auto;
  height: 36px;
  max-width: 100%;
  object-fit: contain;
  filter: saturate(0) contrast(1.15);
  opacity: 0.86;
}

.logo-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 40px;
  background: linear-gradient(135deg, #10161d, #19232d);
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.cta-banner h2 {
  max-width: 12ch;
}

.cta-banner .muted {
  color: rgba(255, 255, 255, 0.84);
}

.cta-banner .btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.cta-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 18, 24, 0.74);
  backdrop-filter: blur(22px);
  transition:
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

body.is-scrolled .site-header {
  background: rgba(11, 16, 22, 0.92);
  box-shadow: 0 16px 36px rgba(5, 10, 15, 0.16);
}

.header-inner {
  display: grid;
  gap: 22px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 60px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.94rem;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav a.is-active {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0f141a, #0b1016);
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -100px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.footer-grid {
  display: grid;
  gap: 26px;
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  padding-bottom: 24px;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-title {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-meta,
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-meta a,
.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.footer-meta a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-cnpj {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  font-size: 0.9rem;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: var(--wa-size);
  height: var(--wa-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f1f1f, #000000);
  box-shadow: 0 18px 34px rgba(19, 54, 29, 0.24);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.wa-float img {
  width: var(--wa-icon);
  height: var(--wa-icon);
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(19, 54, 29, 0.28);
}

.js-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

.js-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: none) {
  .card:hover,
  .thumb:hover,
  .btn:hover,
  .btn-ghost:hover,
  .header-cta:hover,
  .wa-float:hover {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .header-inner,
  .hero-shell,
  .page-hero-grid,
  .split,
  .split-balanced,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    padding: 12px 0;
  }

  main.wrap {
    padding-top: 26px;
    padding-bottom: 72px;
  }

  .header-inner {
    gap: 14px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero-panel-copy {
    padding: 24px 24px 0;
  }

  .hero-img {
    height: 320px;
  }

  .page-hero {
    padding: 28px 24px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 16px;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --wa-size: 56px;
    --wa-icon: 30px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero-copy h1,
  .hero-panel-copy h2,
  .cta-banner h2 {
    max-width: none;
    text-wrap: balance;
  }

  .panel,
  .card,
  .page-hero,
  .cta-banner {
    padding: 22px;
  }

  .grid,
  .grid-2,
  .grid-3,
  .logos {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-ghost,
  button.btn,
  button.btn-ghost,
  input.btn,
  input.btn-ghost {
    width: 100%;
  }

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

  .hero-badges span,
  .fact-pill {
    width: 100%;
  }

  .thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thumb {
    width: 100%;
  }

  .figure img {
    height: 300px;
  }

  .process-list {
    gap: 16px;
  }

  .process-list li {
    min-height: 36px;
    padding-left: 50px;
  }

  .process-list li::before {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .process-list li::after {
    left: 18px;
    top: 38px;
  }

  .visual-card img,
  .hero-img {
    min-height: 0;
    height: 280px;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .wa-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 52px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    display: none;
  }

  .nav a {
    padding: 10px 12px;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
}
