:root {
  --blue-950: #001b44;
  --blue-900: #002a62;
  --blue-800: #073f91;
  --blue-700: #0756c9;
  --blue-100: #eaf3ff;
  --red-700: #d60000;
  --red-600: #ec0b0b;
  --green-600: #17b854;
  --ink: #071c44;
  --muted: #5c6a82;
  --line: #dbe4f2;
  --surface: #ffffff;
  --surface-soft: #f4f8fd;
  --shadow: 0 18px 42px rgba(4, 30, 72, 0.14);
  --shadow-strong: 0 24px 52px rgba(4, 30, 72, 0.18);
  --radius: 8px;
  --container: 1180px;
  --header-height: 82px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.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;
}

/* HEADER PRINCIPAL */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 228, 242, 0.84);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(4, 30, 72, 0.08);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 72px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.site-header .brand-logo {
  filter: drop-shadow(0 8px 16px rgba(4, 30, 72, 0.14));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--blue-950);
  font-size: 0.86rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--blue-950);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* BOTOES E ICONES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-red {
  color: #fff;
  background: linear-gradient(135deg, var(--red-600), #b70000);
  box-shadow: 0 12px 24px rgba(214, 0, 0, 0.22);
}

.btn-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-950));
  box-shadow: 0 14px 28px rgba(7, 63, 145, 0.26);
}

.btn-ghost {
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.88);
  border-color: #9ab1d2;
}

.btn-outline {
  color: var(--blue-800);
  background: #fff;
  border-color: var(--blue-800);
}

.btn-light {
  color: var(--red-700);
  background: #fff;
  box-shadow: 0 16px 35px rgba(75, 0, 0, 0.22);
}

.btn-large {
  min-height: 66px;
  padding: 16px 24px;
}

.btn-large strong {
  display: block;
  margin-top: 2px;
  color: inherit;
}

.btn-phone {
  min-height: 58px;
  min-width: min(100%, 286px);
  font-size: 0.96rem;
}

.icon-whatsapp {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon,
.circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.line-icon {
  width: 34px;
  height: 34px;
  color: var(--blue-800);
  border: 2px solid currentColor;
  border-radius: 9px;
  position: relative;
  padding: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon:not(svg)::before,
.line-icon:not(svg)::after,
.circle-icon:not(svg)::before,
.circle-icon:not(svg)::after {
  content: "";
  position: absolute;
  display: block;
}

.circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0e63e3, #003984);
  position: relative;
  box-shadow: 0 16px 28px rgba(0, 24, 70, 0.28);
  padding: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-document::before,
.icon-pdf::before {
  width: 13px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-document::after,
.icon-pdf::after {
  width: 10px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
  transform: translateY(2px);
}

.icon-badge::before,
.icon-quality::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-badge::after,
.icon-quality::after {
  width: 8px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.icon-speed::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-speed::after {
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateX(3px) rotate(-35deg);
}

.icon-service::before,
.icon-whatsapp-alt::before {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-service::after,
.icon-whatsapp-alt::after {
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  left: 7px;
  bottom: 5px;
}

.icon-cut::before {
  width: 20px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.icon-cut::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
}

.icon-helmet::before,
.icon-worker::before {
  width: 20px;
  height: 11px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.icon-helmet::after,
.icon-worker::after {
  width: 22px;
  height: 2px;
  background: currentColor;
  transform: translateY(8px);
}

.icon-ruler::before {
  width: 21px;
  height: 21px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-building::before {
  width: 17px;
  height: 22px;
  border: 2px solid currentColor;
}

.icon-building::after {
  width: 3px;
  height: 3px;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor, 0 7px 0 currentColor, 6px 7px 0 currentColor;
}

.icon-briefcase::before {
  width: 22px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translateY(3px);
}

.icon-briefcase::after {
  width: 10px;
  height: 5px;
  border: 2px solid currentColor;
  border-bottom: 0;
  transform: translateY(-8px);
}

.icon-student::before {
  width: 21px;
  height: 12px;
  border: 2px solid currentColor;
  transform: rotate(22deg);
}

.icon-student::after {
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(9px);
}

.icon-user::before {
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-7px);
}

.icon-user::after {
  width: 20px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 16px 16px 0 0;
  border-bottom: 0;
  transform: translateY(9px);
}

.icon-calculator::before {
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-calculator::after {
  width: 10px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.icon-printer::before {
  width: 22px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-printer::after {
  width: 16px;
  height: 9px;
  border: 2px solid currentColor;
  transform: translateY(9px);
}

.icon-checklist::before {
  width: 20px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-checklist::after {
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.icon-pin::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-mail::before {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-mail::after {
  width: 14px;
  height: 14px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(-45deg);
}

/* HERO SECTION */
.hero {
  min-height: 610px;
  display: grid;
  align-items: center;
  padding: 48px 0 46px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(7, 86, 201, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 58%, #eaf3ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(500px, 0.94fr) minmax(420px, 1.06fr);
  gap: 42px;
  align-items: center;
}

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

.hero h1,
.section-heading h2,
.proof-copy h2,
.workflow-title h2,
.location-card h2,
.final-cta h2 {
  margin: 0;
  color: var(--blue-950);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.55rem, 3.55vw, 3.55rem);
  line-height: 0.98;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-red {
  color: var(--red-700);
}

.hero-subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  color: #14325c;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 600;
  line-height: 1.55;
}

.authority-note {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 440px;
  margin-top: 24px;
  color: var(--blue-800);
  font-size: 0.98rem;
}

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

.hero-actions .btn {
  width: auto;
  min-width: 236px;
  max-width: 286px;
  flex: 0 1 auto;
}

.hero-actions .btn-blue {
  min-width: 252px;
}

.hero-actions .btn-ghost {
  min-width: 226px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
  margin-top: 34px;
}

.hero-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 0;
}

.hero-benefits .line-icon {
  grid-row: span 2;
}

.hero-benefits strong {
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-benefits small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 0;
  transform: translateY(-24px);
}

.media-frame {
  border-radius: var(--radius);
  background-color: var(--blue-100);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.media-plotter {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 372px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 241, 252, 0.95) 44%, rgba(210, 225, 244, 0.95) 100%);
  box-shadow: var(--shadow-strong);
}

.video-frame {
  display: block;
  border: 1px solid rgba(132, 158, 194, 0.28);
  background: #071c44;
}

.video-frame::before,
.video-frame::after,
.hero-video-wrap::before {
  display: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.media-plotter::before {
  content: "";
  position: absolute;
  top: 54px;
  right: -34px;
  width: 82%;
  height: 156px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff 0%, #dce7f5 100%);
  box-shadow: inset 0 -14px 24px rgba(7, 28, 68, 0.12), 0 20px 42px rgba(4, 30, 72, 0.15);
}

.media-plotter::after {
  content: "";
  position: absolute;
  right: 58px;
  bottom: 40px;
  width: 78%;
  height: 255px;
  border-radius: 4px 4px 16px 16px;
  background:
    linear-gradient(90deg, rgba(7, 63, 145, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 63, 145, 0.14) 1px, transparent 1px),
    linear-gradient(160deg, #ffffff 0%, #edf5ff 100%);
  background-size: 34px 34px, 34px 34px, auto;
  transform: perspective(650px) rotateX(9deg) rotateZ(-2deg);
  transform-origin: top;
  box-shadow: 0 24px 42px rgba(4, 30, 72, 0.16);
}

.media-plotter.video-frame::before,
.media-plotter.video-frame::after,
.hero-video-wrap::before {
  content: none;
  display: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 16%;
  bottom: 20px;
  width: 250px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #d8e5f5);
  box-shadow: 28px 10px 0 #d9e5f4, 58px 18px 0 #cfddea, 0 14px 30px rgba(4, 30, 72, 0.2);
}

/* SECOES GERAIS */
.section {
  padding: 62px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.proof-copy h2,
.workflow-title h2,
.location-card h2 {
  font-size: clamp(1.85rem, 2.75vw, 2.65rem);
}

.section-heading p:not(.eyebrow),
.proof-copy p,
.location-card p,
.final-cta p,
.audience-note {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.centered h2::after,
.benefits h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--red-600);
}

/* FORMATOS E VALORES */
.prices {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fd 100%);
  padding-top: 54px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  min-height: 226px;
  padding: 24px 20px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid #d3e0f1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 58px rgba(4, 30, 72, 0.2);
}

.price-card .line-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  color: var(--blue-700);
  border: 0;
}

.price-card h3 {
  margin: 0;
  color: var(--blue-800);
  font-size: 2.95rem;
  line-height: 1;
  font-weight: 900;
}

.paper {
  display: inline-flex;
  margin: 8px 0 16px;
  padding: 7px 12px;
  color: #fff;
  background: var(--blue-800);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
}

.price {
  margin: 0;
  color: var(--red-700);
  font-size: 2.65rem;
  line-height: 1;
  font-weight: 900;
}

.price small {
  font-size: 1.35rem;
}

.price-card p:last-child {
  margin: 12px 0 0;
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-note,
.microcopy,
.section-action {
  text-align: center;
}

.price-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--blue-950);
  font-weight: 800;
}

.price-note .line-icon {
  width: 28px;
  height: 28px;
}

.microcopy {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-action {
  margin-top: 24px;
}

/* BENEFICIOS */
.benefits {
  padding: 58px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(26, 111, 255, 0.23), transparent 35%),
    linear-gradient(135deg, #00183e, #00316f 58%, #00183e);
}

.benefits .inverted h2,
.benefits .inverted p,
.benefits .section-heading {
  color: #fff;
}

.benefits .eyebrow {
  color: #ff3b3b;
}

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

.benefit-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 24px;
}

.benefit-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: 142px;
  background: rgba(255, 255, 255, 0.34);
}

.benefit-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 600;
}

/* PROVA VISUAL */
.proof {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: center;
}

.proof-copy .btn {
  margin-top: 18px;
}

.proof-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 14px;
}

.proof-gallery .media-frame {
  min-height: 238px;
  border-radius: var(--radius);
  border: 1px solid #d3e0f1;
  box-shadow: 0 18px 38px rgba(4, 30, 72, 0.12);
}

.media-proof-one {
  background-image: url("assets/images/impressora.jpg");
  background-size: cover;
  background-position: center;
}

.media-proof-two {
  background-image: url("assets/images/impressora.jpg");
  background-size: 210%;
  background-position: 42% 52%;
}

.media-proof-three {
  background-image: url("assets/images/impressora.jpg");
  background-size: 190%;
  background-position: 74% 56%;
}

.media-proof-one::before,
.media-proof-three::before {
  content: none;
}

.media-proof-one::after,
.media-proof-three::after {
  content: none;
}

.media-proof-two::before {
  content: none;
}

.proof-gallery p {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 0;
  padding: 10px 18px;
  color: #fff;
  background: var(--blue-800);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(7, 63, 145, 0.25);
  font-size: 0.85rem;
  font-weight: 900;
}

/* PUBLICO ALVO */
.audience {
  background: linear-gradient(180deg, var(--surface-soft), #fff);
}

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

.audience-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-height: 112px;
  padding: 18px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #d8e3f2;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(4, 30, 72, 0.06);
}

.audience-grid .line-icon {
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--blue-950);
}

.audience-grid strong {
  color: var(--blue-950);
  font-size: 0.76rem;
  font-weight: 900;
}

.audience-note {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
}

/* COMO FUNCIONA */
.workflow {
  background: #fff;
  padding-top: 42px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.24fr 0.76fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(4, 30, 72, 0.1);
  overflow: hidden;
}

.workflow-title {
  display: grid;
  align-content: center;
  padding: 30px 30px;
  background: #fff;
}

.workflow-title h2 {
  max-width: 310px;
  font-size: clamp(1.45rem, 1.85vw, 1.86rem);
  line-height: 1.12;
}

.workflow-title h2 span {
  display: block;
  white-space: nowrap;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  padding: 34px 22px 30px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 86px;
  left: 13%;
  right: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #97acd0, transparent);
}

.steps article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
  padding: 0 8px;
}

.step-number {
  position: absolute;
  top: -24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--blue-800);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 63, 145, 0.22);
}

.steps .line-icon {
  width: 70px;
  height: 70px;
  margin-top: 16px;
  color: var(--blue-950);
  background: #fff;
  border-color: #e4ebf5;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(4, 30, 72, 0.1);
  padding: 19px;
  stroke-width: 1.25;
}

.steps h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.18;
}

.steps p {
  margin: 0;
  color: var(--muted);
  max-width: 210px;
  font-size: 0.78rem;
  line-height: 1.38;
  font-weight: 620;
}

/* LOCALIZACAO E CTA */
.location-cta {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
  padding-top: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.location-card,
.final-cta {
  border-radius: 10px;
  padding: clamp(26px, 3vw, 36px);
  min-height: 300px;
  box-shadow: 0 22px 48px rgba(4, 30, 72, 0.11);
}

.location-card {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(28, 96, 210, 0.24), transparent 36%),
    linear-gradient(135deg, #001b44, #002e6d);
}

.location-card h2,
.location-card p,
.location-card a,
.location-card strong,
.location-card span {
  color: #fff;
}

.location-card h2 {
  max-width: 390px;
  font-size: clamp(1.75rem, 2.75vw, 2.55rem);
  line-height: 1.06;
}

.location-card p {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
  max-width: 420px;
}

.contact-grid article {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.contact-grid article:first-child {
  grid-column: auto;
}

.contact-grid .line-icon {
  color: #fff;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  stroke-width: 1.25;
}

.contact-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.82;
}

.contact-grid span,
.contact-grid a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 96% 88%, rgba(255, 255, 255, 0.09), transparent 18%),
    linear-gradient(135deg, #ff120a, #bd0000);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 14px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}

.final-cta h2 {
  max-width: 500px;
  color: #fff;
  font-size: clamp(1.75rem, 2.55vw, 2.65rem);
  line-height: 1.08;
}

.final-cta p {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.final-cta .eyebrow {
  color: #fff;
}

.cta-support {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 0.86rem;
  font-weight: 800;
}

/* RODAPE */
.site-footer {
  color: #fff;
  background: var(--blue-950);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr 1fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.site-footer a,
.site-footer strong,
.site-footer p {
  color: #fff;
}

.brand-footer .brand-logo {
  width: 86px;
  max-height: 86px;
  filter: none;
  opacity: 1;
}

.brand-footer {
  justify-content: center;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 600;
}

.site-footer strong {
  font-size: 0.92rem;
}

/* CTA FLUTUANTE MOBILE */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(135deg, #1bc65c, #0f8f3f);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(6, 92, 39, 0.34);
  font-size: 0.9rem;
  font-weight: 900;
}

/* RESPONSIVIDADE */
@media (max-width: 1080px) {
  .header-grid {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-height) + 8px) 14px auto 14px;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 10px 14px 14px;
    background: #fff;
    border: 1px solid rgba(7, 86, 201, 0.28);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(4, 30, 72, 0.16), 0 0 0 3px rgba(7, 86, 201, 0.05);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .menu-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 0.84rem;
    text-align: center;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    min-width: 0;
  }

  .header-cta {
    font-size: 0;
    width: 50px;
    height: 50px;
    padding: 0;
  }

  .header-cta .icon-whatsapp {
    margin: 0;
  }

  .hero {
    background:
      radial-gradient(circle at 78% 24%, rgba(7, 86, 201, 0.12), transparent 34%),
      linear-gradient(135deg, #ffffff 0%, #f5f9ff 58%, #eaf3ff 100%);
  }

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

  .hero-media {
    transform: none;
  }

  .title-line {
    white-space: normal;
  }

  .hero-media {
    min-height: 390px;
  }

  .media-plotter {
    opacity: 1;
    height: auto;
    max-height: 360px;
  }

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

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

  .benefit-grid article {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
  }

  .benefit-grid article:not(:last-child)::after {
    display: none;
  }

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

  .audience-grid article {
    border: 1px solid #d8e3f2;
  }

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

  .steps::before {
    display: none;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    height: var(--header-height);
  }

  .header-grid {
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    justify-content: stretch;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .brand-logo {
    width: 68px;
    max-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 42px;
    background: linear-gradient(180deg, #fff, #edf5ff);
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: min(6.4vw, 1.85rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .hero h1 .title-line {
    white-space: normal;
  }

  .hero-subtitle {
    margin-top: 14px;
    max-width: 34rem;
  }

  .authority-note {
    justify-content: center;
    text-align: left;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    max-width: none;
    font-size: 0.82rem;
    white-space: normal;
    text-align: center;
  }

  .hero-benefits {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-benefits article {
    padding: 9px 10px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .hero-media {
    min-height: auto;
  }

  .media-plotter {
    height: auto;
    max-height: none;
  }

  .media-plotter::before {
    top: 32px;
    right: -28px;
    height: 96px;
  }

  .media-plotter::after {
    right: 28px;
    bottom: 28px;
    height: 160px;
  }

  .hero-media::before {
    right: 10%;
    bottom: 16px;
    width: 150px;
    height: 28px;
    box-shadow: 18px 8px 0 #d9e5f4, 36px 14px 0 #cfddea, 0 12px 24px rgba(4, 30, 72, 0.18);
  }

  .section {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .price-grid,
  .benefit-grid,
  .proof-gallery,
  .audience-grid,
  .steps,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 210px;
  }

  .benefit-grid article {
    justify-items: start;
    text-align: left;
    grid-template-columns: auto 1fr;
  }

  .benefit-grid .circle-icon {
    grid-row: span 2;
    width: 54px;
    height: 54px;
  }

  .proof-grid {
    gap: 28px;
  }

  .proof-gallery .media-frame {
    min-height: 190px;
  }

  .proof-gallery p {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .audience-grid article,
  .audience-grid article:nth-child(4n) {
    min-height: 86px;
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .workflow-grid {
    box-shadow: none;
  }

  .workflow-title {
    padding: 28px 24px 8px;
  }

  .workflow-title h2 span {
    white-space: normal;
  }

  .steps {
    padding: 24px;
    gap: 28px;
  }

  .steps article {
    justify-items: start;
    text-align: left;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    padding: 0;
  }

  .steps .line-icon {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    margin-top: 0;
  }

  .step-number {
    top: -10px;
    left: 44px;
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }

  .steps h3 {
    align-self: end;
  }

  .location-card,
  .final-cta {
    min-height: auto;
    padding: 30px 24px;
  }

  .footer-grid {
    justify-items: center;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .brand-footer {
    justify-content: center;
  }

  .brand-footer .brand-logo {
    width: 82px;
    max-height: 82px;
  }

  .site-footer {
    padding: 30px 0 72px;
  }

  .site-footer .footer-grid > div {
    max-width: 260px;
  }

  .site-footer p {
    margin-top: 5px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .site-footer strong {
    font-size: 0.86rem;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding: 10px 12px;
    gap: 7px;
    font-size: 0.78rem;
    box-shadow: 0 12px 24px rgba(6, 92, 39, 0.28);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .floating-whatsapp.is-visible {
    display: inline-flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .floating-whatsapp .icon-whatsapp {
    width: 18px;
    height: 18px;
  }
}

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

  .btn-large {
    min-height: 58px;
    padding: 14px 16px;
  }

  .price {
    font-size: 2.55rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 6.1vw;
  }
}

@media (max-width: 900px) {
  .site-footer {
    padding: 32px 0 76px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }

  .brand-footer {
    width: 100%;
    justify-content: center;
  }

  .brand-footer .brand-logo {
    width: 84px;
    max-height: 84px;
    margin-inline: auto;
  }

  .site-footer .footer-grid > div {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .site-footer p {
    margin: 5px 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
  }
}
