:root {
  --ink: #08111f;
  --muted: #5a6474;
  --line: #dce4ef;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --brand: #164f9f;
  --brand-strong: #0a2f6f;
  --accent: #18a6b7;
  --warm: #f2b705;
  --shadow: 0 24px 70px rgba(8, 17, 31, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}

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

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

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 21;
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 9px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, .86);
  background: #07101f;
  font-size: 13px;
  font-weight: 800;
}

.top-strip span {
  margin-right: auto;
  color: rgba(255, 255, 255, .68);
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(220, 228, 239, .7);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, padding .2s ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 12px 40px rgba(8, 17, 31, .08);
}

.brand img {
  width: 166px;
  height: auto;
}

.nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(8px, .9vw, 14px);
  color: #263244;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  padding: 10px 0;
}

.nav a:hover {
  color: var(--brand);
}

.nav-action {
  padding: 10px 16px !important;
  color: #fff !important;
  background: var(--brand);
  border-radius: 999px;
}

.menu-toggle {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

@media (min-width: 1181px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 154px clamp(20px, 6vw, 88px) 70px;
  overflow: hidden;
  color: #fff;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 166, 183, .34), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(242, 183, 5, .18), transparent 28%),
    linear-gradient(90deg, rgba(5, 16, 35, .96) 0%, rgba(5, 16, 35, .84) 48%, rgba(5, 16, 35, .36) 100%),
    linear-gradient(0deg, rgba(5, 16, 35, .76) 0%, rgba(5, 16, 35, .18) 52%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}

.hero-content {
  width: min(100%, 760px);
  max-width: 760px;
}

.eyebrow,
.section-heading span,
.feature-content span,
.contact-copy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: min(590px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 18px 38px rgba(22, 79, 159, .28);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
}

.button.ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .22);
}

.button.light {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-highlights span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
}

.hero-panel {
  align-self: center;
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(7, 16, 31, .38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.hero-panel-logo {
  display: inline-grid;
  min-width: 164px;
  min-height: 98px;
  place-items: center;
  padding: 8px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.5;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.hero-panel-grid div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.hero-panel-grid b,
.hero-panel-grid small {
  display: block;
}

.hero-panel-grid b {
  color: #fff;
  font-size: 13px;
}

.hero-panel-grid small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  line-height: 1.25;
}

.starlink-wordmark {
  display: inline-flex;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.starlink-logo {
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-starlink-logo {
  height: 74px;
  max-width: 210px;
  margin: 0 0 16px;
}

.service-starlink-logo {
  height: 66px;
  max-width: 188px;
  margin-bottom: 22px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.proof-strip div {
  padding: 26px clamp(20px, 4vw, 54px);
  background: #fff;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--brand-strong);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
}

.proof-strip span {
  max-width: 260px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.section {
  padding: 96px clamp(20px, 6vw, 88px);
}

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

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

.section-heading h2,
.feature-content h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.16;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.intro-copy p,
.feature-content p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 24px;
  color: var(--brand-strong);
}

.stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services,
.tech {
  background: var(--soft);
}

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

.service-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(220, 228, 239, .82);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 17, 31, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 166, 183, .38);
  box-shadow: 0 22px 54px rgba(8, 17, 31, .1);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-strong);
  font-size: 12px;
  font-weight: 900;
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:nth-child(2n) .icon {
  background: var(--accent);
}

.service-card:nth-child(3n) .icon {
  background: #263244;
}

.service-card-starlink {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 16, 31, .96), rgba(15, 23, 42, .94)),
    #07101f;
  border-color: rgba(255, 255, 255, .12);
}

.service-card-starlink .icon {
  color: #07101f;
  background: #fff;
}

.service-card-starlink h3,
.service-card-starlink p {
  color: #fff;
}

.service-card-starlink p {
  color: rgba(255, 255, 255, .76);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-grid .service-card-starlink p {
  color: rgba(255, 255, 255, .76);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.starlink-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: 580px;
  padding: 96px clamp(20px, 6vw, 88px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(24, 166, 183, .32), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(242, 183, 5, .2), transparent 26%),
    linear-gradient(135deg, #050b14 0%, #07101f 50%, #0f172a 100%);
}

.starlink-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -42% 42%;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  transform: rotate(-8deg);
}

.starlink-section::after {
  content: "";
  position: absolute;
  right: 9%;
  top: 18%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 0 0 38px rgba(255, 255, 255, .035);
}

.starlink-copy,
.starlink-panel,
.starlink-card {
  position: relative;
  z-index: 1;
}

.section-starlink-logo {
  height: 118px;
  max-width: 300px;
  margin-bottom: 18px;
}

.starlink-copy .eyebrow {
  margin-top: 0;
  color: var(--warm);
}

.starlink-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.05;
}

.starlink-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.72;
}

.starlink-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.starlink-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
  backdrop-filter: blur(16px);
}

.starlink-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
}

.starlink-panel-head strong {
  color: #fff;
  font-size: 21px;
}

.starlink-panel-head span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.starlink-plan-table {
  display: grid;
}

.plan-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.2fr) minmax(92px, .8fr) minmax(96px, .7fr);
  gap: 12px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.35;
}

.plan-row:last-child {
  border-bottom: 0;
}

.plan-header {
  color: rgba(255, 255, 255, .58);
  background: rgba(0, 0, 0, .18);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-row strong {
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

.starlink-panel p {
  margin: 0;
  padding: 16px 22px 20px;
  color: rgba(255, 255, 255, .64);
  background: rgba(0, 0, 0, .12);
  font-size: 13px;
  line-height: 1.55;
}

.starlink-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.starlink-card div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px);
}

.starlink-card strong {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: #07101f;
  background: #fff;
  font-size: 15px;
}

.starlink-card span {
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.starlink-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.starlink-banner {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
}

.starlink-banner-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  align-items: stretch;
}

.starlink-banner div {
  padding: 28px;
}

.starlink-banner span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.starlink-banner h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.12;
}

.starlink-banner:not(.starlink-banner-wide) h3 {
  font-size: 22px;
}

.starlink-banner p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.starlink-banner img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  padding: 0;
  background: #fff;
}

.starlink-banner:not(.starlink-banner-wide) img {
  height: 280px;
}

.process {
  background:
    linear-gradient(180deg, rgba(245, 248, 252, .82), #fff 42%),
    #fff;
}

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

.process-grid article {
  padding: 28px;
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--soft);
}

.process-grid strong {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 18px 0 10px;
  font-size: 23px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.products {
  background:
    linear-gradient(180deg, #fff 0, #f5f8fc 100%);
}

.products-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .7fr);
  align-items: end;
  gap: 34px;
}

.products-head .section-heading h2 {
  max-width: 780px;
}

.products-head p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.product-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.product-app-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(13, 38, 74, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(10, 47, 111, .09);
}

.product-app-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--warm));
}

.product-app-card-featured {
  background:
    linear-gradient(155deg, rgba(10, 47, 111, .97), rgba(7, 16, 31, .96)),
    #07101f;
  color: #fff;
}

.product-app-card-featured p,
.product-app-card-featured .product-features li {
  color: rgba(255, 255, 255, .78);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
}

.product-app-card:nth-child(2) .product-icon {
  background: #12805c;
}

.product-app-card:nth-child(3) .product-icon {
  background: #263244;
}

.product-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(10, 47, 111, .08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.product-app-card-featured .product-badge {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.product-app-card small {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-app-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.product-app-card-featured h3 {
  color: #fff;
}

.product-app-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 0 4px rgba(242, 169, 0, .16);
}

.product-app-card .button {
  justify-self: start;
  color: var(--brand);
  background: #fff;
  border: 1px solid rgba(10, 47, 111, .18);
  box-shadow: 0 12px 26px rgba(10, 47, 111, .08);
}

.product-app-card-featured .button {
  color: #07101f;
  border-color: transparent;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  min-height: 680px;
  background: #07101f;
  color: #fff;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  align-self: center;
  padding: clamp(46px, 7vw, 94px);
}

.feature-content p {
  color: rgba(255, 255, 255, .75);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: inset 0 0 0 5px #07101f;
  border: 2px solid var(--warm);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 14px;
}

.logo-strip img,
.client-grid img {
  width: 100%;
  height: 128px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  filter: saturate(1);
}

.client-grid .client-logo {
  object-position: center;
}

.logo-strip .tech-logo {
  object-position: center;
}

.logo-strip .logo-balanced,
.client-grid .logo-balanced {
  padding: 14px 22px;
}

.logo-strip .logo-wide,
.client-grid .logo-wide {
  padding: 18px 14px;
}

.logo-strip .logo-mark,
.client-grid .logo-mark {
  padding: 12px 34px;
}

.client-grid .logo-extra-wide {
  padding: 24px 10px;
}

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

.search-services {
  background: #f7f9fc;
}

.search-services .section-heading p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.search-service-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.search-service-grid article,
.faq-grid article {
  background: #fff;
  border: 1px solid rgba(13, 38, 74, .1);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(10, 47, 111, .08);
}

.search-service-grid h3,
.faq-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.search-service-grid p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 72px clamp(20px, 6vw, 88px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 16, 31, .96), rgba(10, 47, 111, .94)),
    url("../img/rede-corporativa.jpg") center/cover;
}

.cta-band span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1.18;
}

.page-hero {
  padding: 190px clamp(20px, 6vw, 88px) 78px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 16, 31, .94), rgba(10, 47, 111, .82)),
    url("../img/equipe-reuniao.jpg") center/cover;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
  font-weight: 650;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.detail-grid article,
.utility-card,
.support-box,
.text-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 17, 31, .05);
}

.detail-grid article {
  padding: 30px;
}

.detail-grid h2 {
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-size: 25px;
}

.detail-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.detail-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.utility-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 270px;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.utility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(8, 17, 31, .11);
}

.utility-card img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.utility-logo-combo {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.utility-logo-combo img {
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.utility-card small,
.utility-card strong,
.utility-card span,
.utility-card em {
  display: block;
}

.utility-card small {
  margin-top: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.utility-card strong {
  color: var(--brand-strong);
  font-size: 25px;
}

.utility-card span {
  color: var(--muted);
  line-height: 1.6;
}

.utility-card em {
  align-self: end;
  width: fit-content;
  margin-top: 8px;
  color: var(--brand);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.support-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  background: var(--soft);
}

.ticket-section {
  align-items: start;
}

.support-box {
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 28px;
}

.support-box h2 {
  margin: 0 0 8px;
}

.support-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-trust {
  display: grid;
  gap: 10px;
  margin: 4px 0;
}

.support-trust div {
  padding: 15px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #f8fbff;
}

.support-trust strong,
.support-trust span {
  display: block;
}

.support-trust strong {
  color: var(--brand-strong);
}

.support-trust span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.support-box a {
  color: var(--brand);
  font-weight: 850;
}

.support-note {
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.support-note strong {
  color: var(--brand-strong);
}

.support-note span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.support-frame {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.text-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px;
}

.text-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.text-page a {
  color: var(--brand);
  font-weight: 850;
}

.blog-section {
  background: var(--soft);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 17, 31, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card.is-entering {
  animation: cardIn .32s ease both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(8, 17, 31, .11);
}

.blog-card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 18px 20px 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.blog-card-kicker strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.18;
}

.blog-card-kicker span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.blog-image {
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  flex: 1;
  padding: 20px;
}

.post-header span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card-content h2 {
  margin: 0;
  color: var(--brand-strong);
  display: -webkit-box;
  min-height: 77px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 21px;
  line-height: 1.22;
}

.blog-card-content p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  min-height: 74px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.55;
}

.read-more,
.back-link {
  width: fit-content;
  color: var(--brand);
  font-weight: 900;
}

.blog-card-content .read-more {
  align-self: end;
}

.blog-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.blog-load-more {
  cursor: pointer;
}

.blog-load-more[hidden],
.blog-actions[hidden] {
  display: none;
}

.post-layout {
  padding: 190px clamp(20px, 6vw, 88px) 88px;
  background: linear-gradient(180deg, #f5f8fc 0%, #fff 32%);
}

.post-header {
  max-width: 900px;
  margin: 0 auto 34px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
}

.post-header h1 {
  margin: 14px 0 18px;
  color: var(--brand-strong);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
}

.post-header p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  font-weight: 650;
}

.post-cover {
  width: min(100%, 1040px);
  max-height: 520px;
  margin: 0 auto 38px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.post-content {
  max-width: 820px;
  margin: 0 auto;
}

.post-content p {
  color: #303b4d;
  font-size: 19px;
  line-height: 1.86;
}

.share-box {
  max-width: 820px;
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.share-box strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-strong);
}

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

.share-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #263244;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  font-family: inherit;
  box-shadow: 0 12px 28px rgba(8, 17, 31, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.share-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 17, 31, .12);
}

.share-actions svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.share-actions .share-whatsapp {
  color: #fff;
  border-color: #22c55e;
  background: #22c55e;
}

.share-actions .share-facebook {
  color: #fff;
  border-color: #1877f2;
  background: #1877f2;
}

.share-actions .share-x {
  color: #fff;
  border-color: #111827;
  background: #111827;
}

.share-actions .share-linkedin {
  color: #fff;
  border-color: #0a66c2;
  background: #0a66c2;
}

.share-actions .share-instagram {
  color: #fff;
  border-color: #c13584;
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af);
}

.share-actions .share-instagram.copied::after {
  content: "link copiado";
  margin-left: 2px;
  font-size: 11px;
  opacity: .86;
}

.share-actions .share-email svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 540px);
  gap: clamp(34px, 6vw, 80px);
  padding: 96px clamp(20px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(245, 248, 252, .98)),
    radial-gradient(circle at 12% 16%, rgba(24, 166, 183, .12), transparent 34%);
}

.contact-copy {
  align-self: center;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.contact-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 17, 31, .05);
}

.contact-card small {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--brand-strong);
  font-size: 17px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-card:nth-child(2) {
  grid-column: span 2;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #fff;
  background: #263244;
  box-shadow: 0 14px 30px rgba(8, 17, 31, .1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 17, 31, .16);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-facebook {
  background: #1877f2;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af);
}

.social-youtube {
  background: #ff0000;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ticket-form {
  align-self: start;
  position: relative;
  overflow: hidden;
}

.ticket-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--warm));
}

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

.form-heading {
  display: grid;
  gap: 6px;
  padding-bottom: 4px;
}

.form-heading strong {
  color: var(--brand-strong);
  font-size: 24px;
}

.form-heading span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #263244;
  font-size: 13px;
  font-weight: 900;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  background: var(--soft);
  resize: vertical;
}

.contact-form input[type="file"] {
  padding: 12px;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(24, 166, 183, .18);
  border-color: var(--accent);
  background: #fff;
}

.captcha-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(24, 166, 183, .28);
  border-radius: 8px;
  background: #f8fcff;
}

.captcha-box strong,
.captcha-box span {
  display: block;
}

.captcha-box strong {
  color: var(--brand-strong);
}

.captcha-box span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(160px, .6fr) minmax(260px, .8fr);
  align-items: start;
  gap: 20px;
  padding: 44px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, .72);
  background: #07101f;
}

.footer img {
  width: 150px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
}

.footer p {
  max-width: 360px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.footer a,
.footer span {
  color: #fff;
}

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

.footer-links strong {
  color: #fff;
  margin-bottom: 4px;
}

.footer a {
  font-weight: 800;
}

.compact-footer {
  grid-template-columns: minmax(260px, 1fr) minmax(240px, .6fr);
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 16px 38px rgba(25, 164, 99, .35);
  font-size: 14px;
  font-weight: 900;
}

.whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    top: 92px;
    left: 18px;
    right: 18px;
    display: none;
    align-items: stretch;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    white-space: normal;
    font-size: 15px;
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .nav a:hover {
    background: var(--soft);
  }

  .nav-action {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .proof-strip,
  .process-grid,
  .product-app-grid,
  .starlink-card,
  .starlink-showcase,
  .detail-grid,
  .utility-grid,
  .search-service-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .starlink-section,
  .starlink-banner-wide,
  .products-head,
  .feature-band,
  .contact,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .feature-media {
    height: 360px;
  }

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

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

  .cta-band {
    display: grid;
  }
}

@media (max-width: 680px) {
  .top-strip {
    display: none;
  }

  .site-header {
    top: 0;
    padding-left: 16px;
    padding-right: 16px;
    justify-content: flex-start;
  }

  .nav {
    top: 76px;
    max-height: calc(100vh - 94px);
  }

  .menu-toggle {
    position: fixed;
    top: 24px;
    right: 18px;
    z-index: 30;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 48px;
  }

  .page-hero {
    padding: 124px 20px 58px;
  }

  .hero-actions,
  .starlink-actions,
  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-content,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-panel {
    width: 100%;
    padding: 20px;
  }

  .hero-panel-logo {
    min-width: 138px;
    min-height: 82px;
  }

  .hero-starlink-logo {
    height: 62px;
    max-width: 180px;
  }

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

  .section,
  .contact {
    padding: 70px 20px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .stats,
  .proof-strip,
  .service-grid,
  .process-grid,
  .product-app-grid,
  .starlink-card,
  .starlink-showcase,
  .detail-grid,
  .utility-grid,
  .blog-grid,
  .logo-strip,
  .client-grid,
  .search-service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-content {
    padding: 54px 20px;
  }

  .starlink-section {
    padding: 70px 20px;
  }

  .section-starlink-logo {
    height: 92px;
    max-width: 230px;
  }

  .starlink-panel-head {
    display: grid;
  }

  .starlink-panel-head span {
    white-space: normal;
  }

  .plan-header {
    display: none;
  }

  .plan-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }

  .plan-row strong {
    font-size: 16px;
  }

  .starlink-banner div {
    padding: 22px;
  }

  .starlink-banner img {
    min-height: 210px;
    height: 230px;
    padding: 0;
  }

  .contact-form {
    padding: 20px;
  }

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

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

  .share-actions {
    grid-template-columns: 1fr 1fr;
  }

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

  .captcha-box {
    grid-template-columns: 1fr;
  }

  .contact-card:nth-child(2) {
    grid-column: auto;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
  }

  .whatsapp span {
    display: none;
  }

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

  .support-frame {
    min-height: 680px;
  }

  .text-page {
    padding: 28px;
  }

  .post-layout {
    padding: 124px 20px 64px;
  }

  .post-header h1 {
    font-size: clamp(28px, 9vw, 38px);
  }
}

@media (max-width: 480px) {
  .share-actions {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    transform: none;
  }

  .hero-content,
  .hero-actions,
  .hero-text,
  .hero-panel {
    width: min(330px, 100%);
    max-width: min(330px, 100%);
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
  }
}

.neo-home {
  background: #f5f7fb;
}

.neo-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 156px clamp(20px, 6vw, 86px) 82px;
  color: #fff;
  background: #050b14;
}

.neo-hero-bg {
  position: absolute;
  inset: 0;
}

.neo-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05);
}

.neo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 20%, rgba(24, 166, 183, .34), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(242, 183, 5, .18), transparent 26%),
    linear-gradient(90deg, rgba(4, 10, 20, .98) 0%, rgba(6, 17, 35, .9) 48%, rgba(6, 17, 35, .48) 100%),
    linear-gradient(0deg, rgba(4, 10, 20, .88) 0%, rgba(4, 10, 20, .18) 55%);
}

.neo-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.neo-hero-copy {
  max-width: 850px;
}

.neo-eyebrow,
.neo-section-head span,
.neo-starlink-copy span {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.neo-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
}

.neo-hero-copy p:not(.neo-eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.58;
  font-weight: 600;
}

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

.neo-orbit {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}

.neo-orbit-logo {
  display: grid;
  place-items: center;
  min-height: 132px;
  border-radius: 8px;
  background: #fff;
}

.neo-orbit-logo img {
  width: min(220px, 78%);
}

.neo-orbit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.neo-orbit-row span {
  color: rgba(255, 255, 255, .7);
  font-weight: 800;
}

.neo-orbit-row strong {
  color: #fff;
  font-size: 22px;
}

.neo-orbit-row.starlink {
  grid-template-columns: 140px 1fr;
}

.neo-orbit-row.starlink img {
  max-height: 56px;
  filter: brightness(0) invert(1);
}

.neo-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #dfe7f2;
}

.neo-proof div {
  min-height: 118px;
  padding: 28px clamp(20px, 3vw, 44px);
  background: #fff;
}

.neo-proof strong,
.neo-proof span,
.neo-plan-strip strong,
.neo-plan-strip span {
  display: block;
}

.neo-proof strong {
  color: var(--brand-strong);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1;
}

.neo-proof span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.neo-section {
  padding: 96px clamp(20px, 6vw, 88px);
}

.neo-section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.neo-section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.neo-section-head.compact {
  max-width: 760px;
}

.neo-section-head h2,
.neo-starlink h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
}

.neo-about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.neo-about-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.neo-about-list {
  display: grid;
  gap: 10px;
}

.neo-about-list span {
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 17, 31, .06);
  color: #1d2939;
  font-weight: 850;
}

.neo-services {
  color: #fff;
  background:
    linear-gradient(135deg, #07101f 0%, #0c2442 52%, #123524 100%);
}

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

.neo-service-grid article,
.neo-advantage-grid div {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.neo-service-grid b {
  display: inline-flex;
  color: var(--warm);
  font-size: 13px;
}

.neo-service-grid h3,
.neo-advantage-grid strong {
  display: block;
  margin: 18px 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
}

.neo-service-grid p,
.neo-advantage-grid span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.neo-starlink {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 76px);
  padding: 98px clamp(20px, 6vw, 88px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(24, 166, 183, .32), transparent 28%),
    linear-gradient(135deg, #050b14 0%, #101827 100%);
}

.neo-starlink-copy img {
  width: 240px;
  filter: brightness(0) invert(1);
}

.neo-starlink-copy span {
  display: block;
  margin-top: 22px;
}

.neo-starlink-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.7;
}

.neo-starlink-copy .button {
  margin-top: 30px;
}

.neo-starlink-visual {
  display: grid;
  gap: 14px;
}

.neo-starlink-visual img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}

.neo-starlink-visual .main {
  height: 430px;
}

.neo-starlink-visual .mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.neo-starlink-visual .mini img {
  height: 190px;
}

.neo-plan-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.neo-plan-strip div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.neo-plan-strip strong {
  font-size: 20px;
}

.neo-plan-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-weight: 800;
}

.neo-products {
  background: #fff;
}

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

.neo-product-grid a {
  display: grid;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(13, 38, 74, .1);
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 18px 44px rgba(8, 17, 31, .06);
}

.neo-product-grid small {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.neo-product-grid strong {
  align-self: end;
  color: var(--brand-strong);
  font-size: 28px;
  line-height: 1.1;
}

.neo-product-grid span {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.neo-advantages {
  color: #fff;
  background:
    linear-gradient(rgba(5, 16, 35, .88), rgba(5, 16, 35, .88)),
    url("../img/rede-corporativa.jpg") center/cover;
}

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

.neo-contact {
  background: #f5f7fb;
}

@media (max-width: 1180px) {
  .neo-hero-shell,
  .neo-about-grid,
  .neo-starlink {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .neo-hero {
    min-height: auto;
    padding: 116px 20px 52px;
  }

  .neo-hero h1 {
    font-size: 38px;
  }

  .neo-actions,
  .neo-actions .button {
    width: 100%;
  }

  .neo-orbit-row,
  .neo-orbit-row.starlink,
  .neo-proof,
  .neo-service-grid,
  .neo-product-grid,
  .neo-advantage-grid,
  .neo-plan-strip,
  .neo-starlink-visual .mini {
    grid-template-columns: 1fr;
  }

  .neo-section,
  .neo-starlink {
    padding: 68px 20px;
  }

  .neo-section-head h2,
  .neo-starlink h2 {
    font-size: 34px;
  }

  .neo-starlink-copy img {
    width: 200px;
  }

  .neo-starlink-visual .main,
  .neo-starlink-visual .mini img {
    height: 240px;
  }
}

.revo-home {
  overflow: hidden;
  background: #eef3f9;
  color: #0b1727;
}

.revo-hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 150px clamp(20px, 6vw, 88px) 72px;
  color: #fff;
  background: #040812;
}

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

.revo-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08) brightness(.68);
}

.revo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, .98) 0%, rgba(4, 12, 28, .92) 46%, rgba(5, 22, 40, .6) 100%),
    radial-gradient(circle at 74% 20%, rgba(0, 210, 190, .32), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(245, 181, 34, .22), transparent 26%);
  z-index: 1;
}

.revo-hero-grid {
  z-index: 2;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .72) 58%, transparent 100%);
}

.revo-hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 460px);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.revo-hero-copy {
  max-width: 940px;
}

.revo-kicker,
.revo-section-title span,
.revo-starlink-copy span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f2b705;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.revo-kicker::before,
.revo-section-title span::before,
.revo-starlink-copy span::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.revo-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 6.7vw, 104px);
  line-height: .92;
  letter-spacing: 0;
}

.revo-hero-copy p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.62;
  font-weight: 650;
}

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

.revo-starlink-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-top: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(8, 47, 111, .14);
  border-radius: 8px;
  color: #0a1a2f;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 42px rgba(8, 17, 31, .08);
  backdrop-filter: blur(14px);
}

.revo-starlink-badge img {
  width: 124px;
  max-width: 34vw;
}

.revo-starlink-badge span {
  color: #075985;
  font-size: 13px;
  font-weight: 750;
}

.revo-command {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07)),
    rgba(6, 17, 34, .68);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
  backdrop-filter: blur(18px);
}

.revo-command::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(55, 214, 201, .14);
  border-radius: 8px;
  pointer-events: none;
}

.revo-command-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.revo-command-top img {
  width: min(210px, 100%);
}

.revo-command-top span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  color: #064e3b;
  background: #d9f99d;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.revo-signal {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.revo-signal strong,
.revo-signal span {
  display: block;
}

.revo-signal strong {
  color: #fff;
  font-size: 22px;
}

.revo-signal span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .66);
  font-weight: 750;
}

.revo-command-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.revo-command-footer div {
  padding: 18px;
  border-radius: 8px;
  color: #08111f;
  background: #f2b705;
}

.revo-command-footer b,
.revo-command-footer small {
  display: block;
}

.revo-command-footer b {
  font-size: 24px;
  line-height: 1;
}

.revo-command-footer small {
  margin-top: 8px;
  color: rgba(8, 17, 31, .72);
  font-weight: 900;
}

.revo-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #d8e2ef;
}

.revo-status div {
  min-height: 126px;
  padding: 30px clamp(20px, 3vw, 42px);
  background: #fff;
}

.revo-status strong,
.revo-status span {
  display: block;
}

.revo-status strong {
  color: #082f6f;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1;
}

.revo-status span {
  max-width: 230px;
  margin-top: 10px;
  color: #667085;
  font-size: 14px;
  font-weight: 850;
}

.revo-section {
  padding: 104px clamp(20px, 6vw, 88px);
}

.revo-section-title {
  max-width: 900px;
  margin-bottom: 42px;
}

.revo-section-title h2,
.revo-starlink h2 {
  margin: 0;
  color: #0a1a2f;
  font-size: clamp(34px, 4.7vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.revo-manifest {
  background:
    linear-gradient(180deg, #eef3f9 0%, #fff 100%);
}

.revo-manifest-grid,
.revo-layer-grid,
.revo-app-grid,
.revo-workline {
  display: grid;
  gap: 16px;
}

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

.revo-manifest-grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(13, 38, 74, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 17, 31, .08);
}

.revo-manifest-grid h3,
.revo-layer-grid h3,
.revo-app-grid strong,
.revo-workline strong {
  margin: 0;
  color: #082f6f;
  font-size: 27px;
  line-height: 1.12;
}

.revo-manifest-grid p,
.revo-layer-grid p,
.revo-app-grid span,
.revo-workline span,
.revo-starlink p {
  color: #667085;
  line-height: 1.7;
}

.revo-layers {
  color: #fff;
  background:
    linear-gradient(135deg, #040812 0%, #062b45 48%, #0f3d31 100%);
}

.revo-layers .revo-section-title h2,
.revo-starlink h2,
.revo-proof-work .revo-section-title h2 {
  color: #fff;
}

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

.revo-layer-grid article {
  display: grid;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
}

.revo-layer-grid b,
.revo-workline b {
  color: #f2b705;
  font-size: 13px;
}

.revo-layer-grid h3 {
  color: #fff;
  margin-top: 18px;
}

.revo-layer-grid p {
  color: rgba(255, 255, 255, .7);
}

.revo-layer-grid a {
  align-self: end;
  color: #f2b705;
  font-weight: 900;
}

.revo-starlink {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 76px);
  padding: 108px clamp(20px, 6vw, 88px);
  color: #fff;
  background:
    linear-gradient(rgba(3, 8, 18, .88), rgba(3, 8, 18, .94)),
    url("../img/rede-corporativa.jpg") center/cover;
}

.revo-starlink-copy img {
  width: min(270px, 72vw);
  filter: brightness(0) invert(1);
}

.revo-starlink p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.revo-starlink-copy .button {
  margin-top: 30px;
}

.revo-starlink-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.revo-starlink-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.revo-starlink-gallery .wide {
  grid-column: 1 / -1;
  height: 410px;
}

.revo-plan-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.revo-plan-strip div {
  position: relative;
  min-height: 150px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(141, 233, 255, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
}

.revo-plan-strip div::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 78px;
  height: 78px;
  border: 14px solid rgba(141, 233, 255, .08);
  border-radius: 999px;
}

.revo-plan-strip small {
  display: block;
  color: #8de9ff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.revo-plan-strip strong,
.revo-plan-strip span {
  display: block;
}

.revo-plan-strip strong {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}

.revo-plan-strip span {
  margin-top: 12px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 560;
}

.revo-plan-strip .revo-plan-note {
  border-color: rgba(242, 183, 5, .28);
  background:
    linear-gradient(135deg, rgba(242, 183, 5, .16), rgba(255, 255, 255, .06));
}

.revo-plan-strip .revo-plan-note small {
  color: #f2b705;
}

.revo-apps {
  background: #fff;
}

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

.revo-app-grid a {
  position: relative;
  display: grid;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(13, 38, 74, .1);
  border-radius: 8px;
  background: #f7fbff;
  box-shadow: 0 22px 55px rgba(8, 17, 31, .07);
}

.revo-app-grid a::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(0, 136, 204, .11);
  border-radius: 999px;
}

.revo-app-grid small {
  color: #0088cc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.revo-app-grid strong {
  align-self: end;
  font-size: 32px;
}

.revo-app-grid span {
  margin-top: 15px;
}

.revo-proof-work {
  color: #fff;
  background: #06111f;
}

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

.revo-workline div {
  min-height: 250px;
  padding: 28px;
  border-top: 3px solid #f2b705;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.revo-workline strong {
  display: block;
  margin: 20px 0 12px;
  color: #fff;
}

.revo-workline span {
  color: rgba(255, 255, 255, .7);
}

.revo-certifications {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 136, 204, .12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.revo-certifications .revo-section-title {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.revo-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 960px;
  margin: 38px auto 0;
}

.revo-cert-card {
  display: grid;
  grid-template-columns: minmax(150px, 230px) 1fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(13, 38, 74, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 60px rgba(8, 17, 31, .08);
}

.revo-cert-seal {
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #07101f;
}

.revo-cert-seal img {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.revo-cert-copy {
  display: grid;
  gap: 12px;
}

.revo-cert-copy small {
  color: #0088cc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.revo-cert-copy strong {
  color: #08111f;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.revo-cert-copy p {
  max-width: 560px;
  margin: 0;
  color: #526070;
}

.revo-home .clients {
  background: #f3f7fb;
}

.revo-home .neo-contact {
  background:
    linear-gradient(180deg, #fff 0%, #edf4fb 100%);
}

@media (max-width: 1180px) {
  .revo-hero-shell,
  .revo-starlink {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .revo-manifest-grid,
  .revo-app-grid,
  .revo-plan-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .revo-hero {
    min-height: auto;
    padding: 118px 20px 54px;
  }

  .revo-hero h1 {
    font-size: 43px;
    line-height: .98;
  }

  .revo-hero-copy p {
    font-size: 17px;
  }

  .revo-actions,
  .revo-actions .button,
  .revo-command-footer,
  .revo-status,
  .revo-layer-grid,
  .revo-workline,
  .revo-cert-card,
  .revo-starlink-gallery {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .revo-starlink-badge {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .revo-starlink-badge img {
    width: 136px;
    max-width: 70%;
  }

  .revo-cert-card {
    padding: 22px;
  }

  .revo-cert-seal img {
    width: min(100%, 190px);
  }

  .revo-section,
  .revo-starlink {
    padding: 72px 20px;
  }

  .revo-section-title h2,
  .revo-starlink h2 {
    font-size: 36px;
    line-height: 1.04;
  }

  .revo-command-top {
    grid-template-columns: 1fr;
  }

  .revo-command-top span {
    justify-self: start;
  }

  .revo-starlink-gallery .wide,
  .revo-starlink-gallery img {
    grid-column: auto;
    height: 260px;
  }
}

/* Home refinada: tecnologia premium com leitura leve. */
.revo-home {
  background: #f7f9fc;
  color: #122033;
}

.revo-hero {
  min-height: 86vh;
  padding: 142px clamp(22px, 6vw, 90px) 66px;
  color: #f8fbff;
  background: #08111f;
}

.revo-hero-media img {
  filter: saturate(.76) contrast(1.02) brightness(.92);
}

.revo-hero::before {
  background:
    linear-gradient(90deg, rgba(248, 251, 255, .96) 0%, rgba(244, 249, 253, .9) 44%, rgba(8, 17, 31, .52) 100%),
    radial-gradient(circle at 82% 18%, rgba(0, 136, 204, .22), transparent 30%),
    radial-gradient(circle at 24% 84%, rgba(42, 176, 153, .18), transparent 28%);
}

.revo-hero-grid {
  opacity: .42;
  background-image:
    linear-gradient(rgba(8, 47, 111, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 47, 111, .08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .55) 54%, transparent 96%);
}

.revo-hero-shell {
  grid-template-columns: minmax(0, .98fr) minmax(330px, 430px);
  gap: clamp(36px, 6vw, 84px);
}

.revo-hero-copy {
  max-width: 820px;
}

.revo-kicker,
.revo-section-title span,
.revo-starlink-copy span {
  color: #0088cc;
  font-size: 11px;
  font-weight: 750;
}

.revo-hero h1 {
  max-width: 760px;
  color: #0a1a2f;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.04;
  font-weight: 650;
}

.revo-hero-copy p {
  max-width: 650px;
  color: #475467;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.72;
  font-weight: 450;
}

.revo-actions .button {
  min-height: 46px;
  font-weight: 750;
}

.revo-actions .button.ghost {
  color: #0a2f6f;
  border-color: rgba(10, 47, 111, .22);
  background: rgba(255, 255, 255, .68);
}

.revo-command {
  gap: 10px;
  padding: 18px;
  border-color: rgba(8, 47, 111, .14);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 28px 70px rgba(8, 17, 31, .14);
}

.revo-command::after {
  border-color: rgba(0, 136, 204, .12);
}

.revo-command-top {
  border: 1px solid rgba(8, 47, 111, .08);
  background: rgba(255, 255, 255, .92);
}

.revo-command-top img {
  width: min(190px, 100%);
}

.revo-command-top span {
  color: #075985;
  background: #e0f2fe;
  font-weight: 760;
}

.revo-signal {
  border-color: rgba(8, 47, 111, .1);
  background: rgba(248, 251, 255, .88);
}

.revo-signal strong {
  color: #0a1a2f;
  font-size: 19px;
  font-weight: 650;
}

.revo-signal span {
  color: #667085;
  font-weight: 500;
}

.revo-command-footer div {
  color: #0a1a2f;
  background: linear-gradient(135deg, #e0f2fe, #ecfdf5);
}

.revo-command-footer b {
  font-size: 21px;
  font-weight: 720;
}

.revo-command-footer small {
  color: #667085;
  font-weight: 650;
}

.revo-status {
  background: #e6edf5;
}

.revo-status div {
  min-height: 108px;
  padding: 24px clamp(20px, 3vw, 36px);
}

.revo-status strong {
  color: #0a2f6f;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 680;
}

.revo-status span {
  color: #667085;
  font-weight: 600;
}

.revo-section {
  padding: 86px clamp(22px, 6vw, 88px);
}

.revo-section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.revo-section-title h2,
.revo-starlink h2 {
  color: #0a1a2f;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.12;
  font-weight: 620;
}

.revo-manifest {
  background:
    linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.revo-manifest-grid,
.revo-layer-grid,
.revo-app-grid,
.revo-workline {
  gap: 14px;
}

.revo-manifest-grid article,
.revo-app-grid a {
  min-height: 230px;
  padding: 26px;
  border-color: rgba(8, 47, 111, .08);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 42px rgba(8, 17, 31, .055);
}

.revo-manifest-grid h3,
.revo-layer-grid h3,
.revo-app-grid strong,
.revo-workline strong {
  color: #0a2f6f;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 650;
}

.revo-manifest-grid p,
.revo-layer-grid p,
.revo-app-grid span,
.revo-workline span,
.revo-starlink p {
  color: #667085;
  line-height: 1.72;
  font-weight: 430;
}

.revo-layers {
  color: #0a1a2f;
  background:
    linear-gradient(135deg, rgba(245, 249, 252, .96), rgba(238, 247, 251, .96)),
    linear-gradient(90deg, rgba(0, 136, 204, .12), rgba(42, 176, 153, .12));
}

.revo-layers .revo-section-title h2,
.revo-proof-work .revo-section-title h2 {
  color: #0a1a2f;
}

.revo-layer-grid article {
  min-height: 300px;
  padding: 24px;
  border-color: rgba(8, 47, 111, .09);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 18px 44px rgba(8, 17, 31, .055);
}

.revo-layer-grid b,
.revo-workline b {
  color: #0088cc;
  font-weight: 760;
}

.revo-layer-grid h3 {
  color: #0a2f6f;
}

.revo-layer-grid p {
  color: #667085;
}

.revo-layer-grid a {
  color: #0088cc;
  font-weight: 720;
}

.revo-starlink {
  padding: 92px clamp(22px, 6vw, 88px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 12, 24, .92), rgba(5, 21, 36, .76)),
    url("../img/rede-corporativa.jpg") center/cover;
}

.revo-starlink h2 {
  color: #fff;
  font-weight: 600;
}

.revo-starlink p {
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
}

.revo-starlink-gallery img {
  height: 205px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.revo-starlink-gallery .wide {
  height: 350px;
}

.revo-plan-strip div {
  padding: 20px;
  background: rgba(255, 255, 255, .075);
}

.revo-plan-strip strong {
  font-size: 18px;
  font-weight: 650;
}

.revo-plan-strip span {
  font-weight: 520;
}

.revo-app-grid a {
  min-height: 250px;
}

.revo-app-grid a::after {
  border-color: rgba(0, 136, 204, .07);
}

.revo-app-grid small {
  font-weight: 720;
}

.revo-app-grid strong {
  font-size: 27px;
}

.revo-proof-work {
  color: #0a1a2f;
  background: #f7f9fc;
}

.revo-workline div {
  min-height: 215px;
  padding: 24px;
  border-top-color: #0088cc;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 17, 31, .05);
}

.revo-workline strong {
  color: #0a2f6f;
  margin: 16px 0 10px;
}

.revo-workline span {
  color: #667085;
}

@media (max-width: 760px) {
  .revo-hero {
    padding: 112px 20px 48px;
  }

  .revo-hero h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .revo-hero-copy p {
    font-size: 16px;
  }

  .revo-section,
  .revo-starlink {
    padding: 58px 20px;
  }

  .revo-section-title h2,
  .revo-starlink h2 {
    font-size: 29px;
    line-height: 1.14;
  }

  .revo-manifest-grid article,
  .revo-layer-grid article,
  .revo-app-grid a,
  .revo-workline div {
    min-height: auto;
    padding: 22px;
  }

  .revo-starlink-gallery .wide,
  .revo-starlink-gallery img {
    height: 220px;
  }
}

/* Energia visual: conexoes e acentos fortes sem pesar a leitura. */
.revo-hero {
  isolation: isolate;
}

.revo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .58;
  background:
    linear-gradient(115deg, transparent 0 23%, rgba(0, 136, 204, .28) 23.2%, transparent 23.7% 100%),
    linear-gradient(152deg, transparent 0 58%, rgba(42, 176, 153, .24) 58.2%, transparent 58.7% 100%),
    linear-gradient(28deg, transparent 0 72%, rgba(242, 183, 5, .26) 72.2%, transparent 72.65% 100%);
  pointer-events: none;
}

.revo-command,
.revo-manifest-grid article,
.revo-layer-grid article,
.revo-app-grid a,
.revo-workline div {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.revo-command:hover,
.revo-manifest-grid article:hover,
.revo-layer-grid article:hover,
.revo-app-grid a:hover,
.revo-workline div:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 204, .28);
  box-shadow: 0 24px 62px rgba(8, 47, 111, .11);
}

.revo-signal {
  position: relative;
  overflow: hidden;
}

.revo-signal::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2ab099;
  box-shadow: 0 0 0 7px rgba(42, 176, 153, .11);
}

.revo-status div,
.revo-layer-grid article,
.revo-workline div {
  position: relative;
  overflow: hidden;
}

.revo-status div::after,
.revo-layer-grid article::after,
.revo-workline div::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 74px;
  height: 34px;
  opacity: .45;
  background:
    radial-gradient(circle at 0 50%, #0088cc 0 3px, transparent 4px),
    radial-gradient(circle at 50% 50%, #2ab099 0 3px, transparent 4px),
    radial-gradient(circle at 100% 50%, #f2b705 0 3px, transparent 4px),
    linear-gradient(90deg, transparent 0 2px, rgba(0, 136, 204, .38) 2px 50%, transparent 50%),
    linear-gradient(90deg, transparent 50%, rgba(42, 176, 153, .38) 50% calc(100% - 2px), transparent calc(100% - 2px));
}

.revo-layer-grid article:nth-child(2)::after,
.revo-workline div:nth-child(2)::after {
  filter: hue-rotate(38deg);
}

.revo-layer-grid article:nth-child(3)::after,
.revo-workline div:nth-child(3)::after {
  filter: hue-rotate(92deg);
}

.revo-layer-grid article:nth-child(4)::after,
.revo-workline div:nth-child(4)::after {
  filter: hue-rotate(142deg);
}

.revo-layers {
  background:
    linear-gradient(135deg, rgba(247, 250, 253, .97), rgba(238, 248, 252, .96)),
    linear-gradient(90deg, rgba(0, 136, 204, .16), rgba(42, 176, 153, .15), rgba(242, 183, 5, .08));
}

.revo-layers .revo-section-title h2,
.revo-proof-work .revo-section-title h2,
.revo-apps .revo-section-title h2,
.revo-manifest .revo-section-title h2 {
  color: #0a1a2f;
}

.revo-layers .revo-section-title span,
.revo-apps .revo-section-title span,
.revo-proof-work .revo-section-title span,
.revo-manifest .revo-section-title span {
  color: #0077b6;
}

.revo-layer-grid article:nth-child(1),
.revo-workline div:nth-child(1) {
  border-top: 3px solid #0088cc;
}

.revo-layer-grid article:nth-child(2),
.revo-workline div:nth-child(2) {
  border-top: 3px solid #2ab099;
}

.revo-layer-grid article:nth-child(3),
.revo-workline div:nth-child(3) {
  border-top: 3px solid #7c3aed;
}

.revo-layer-grid article:nth-child(4),
.revo-workline div:nth-child(4) {
  border-top: 3px solid #f2b705;
}

.revo-starlink {
  position: relative;
  overflow: hidden;
  padding-top: 118px;
  padding-bottom: 118px;
}

.revo-starlink::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background:
    linear-gradient(117deg, transparent 0 38%, rgba(255, 255, 255, .3) 38.15%, transparent 38.6%),
    linear-gradient(31deg, transparent 0 68%, rgba(0, 136, 204, .4) 68.15%, transparent 68.65%);
  pointer-events: none;
}

.revo-starlink > * {
  position: relative;
  z-index: 1;
}

.revo-starlink-orbit {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  top: 74px;
  z-index: 0;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(141, 233, 255, .22);
  border-radius: 999px;
  opacity: .74;
  animation: revoStarlinkRotate 18s linear infinite;
}

.revo-starlink-orbit::before,
.revo-starlink-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: inherit;
}

.revo-starlink-orbit::after {
  inset: 28%;
  border-color: rgba(36, 211, 193, .24);
}

.revo-starlink-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #8de9ff;
  box-shadow: 0 0 0 8px rgba(141, 233, 255, .1), 0 0 34px rgba(141, 233, 255, .72);
}

.revo-starlink-orbit span:nth-child(1) {
  left: 48%;
  top: -6px;
}

.revo-starlink-orbit span:nth-child(2) {
  right: 5%;
  bottom: 22%;
  background: #24d3c1;
}

.revo-starlink-orbit span:nth-child(3) {
  left: 13%;
  bottom: 12%;
  background: #f2b705;
}

.revo-starlink-orbit span:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(141, 233, 255, .9), transparent);
  transform: translateY(-50%) rotate(18deg);
  transform-origin: left center;
}

.revo-starlink-video {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(141, 233, 255, .26);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 136, 204, .22), rgba(124, 58, 237, .16)),
    rgba(255, 255, 255, .07);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

.revo-starlink-video iframe,
.revo-starlink-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border: 0;
  background: #020617;
  object-fit: cover;
}

.revo-video-caption {
  display: grid;
  align-content: center;
  padding: 24px;
  border-left: 1px solid rgba(141, 233, 255, .18);
  background: rgba(3, 12, 24, .5);
}

.revo-video-caption small,
.revo-video-caption strong,
.revo-video-caption a {
  display: block;
}

.revo-video-caption small {
  color: #8de9ff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.revo-video-caption strong {
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 650;
}

.revo-video-caption a {
  margin-top: 18px;
  color: #f2b705;
  font-size: 13px;
  font-weight: 800;
}

.revo-starlink-promos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.revo-starlink-promos article {
  position: relative;
  min-height: 132px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(141, 233, 255, .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06)),
    rgba(4, 16, 31, .42);
  backdrop-filter: blur(12px);
}

.revo-starlink-promos article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8de9ff, #24d3c1, transparent);
  animation: revoLineFlow 4.6s ease-in-out infinite;
}

.revo-starlink-promos article:nth-child(2)::after {
  animation-delay: .7s;
}

.revo-starlink-promos article:nth-child(3)::after {
  animation-delay: 1.4s;
}

.revo-starlink-promos small,
.revo-starlink-promos strong {
  display: block;
}

.revo-starlink-promos small {
  color: #8de9ff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.revo-starlink-promos strong {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.25;
  font-weight: 650;
}

.revo-starlink-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.revo-starlink-highlights div {
  padding: 14px;
  border: 1px solid rgba(141, 233, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.revo-starlink-highlights strong,
.revo-starlink-highlights span {
  display: block;
}

.revo-starlink-highlights strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.revo-starlink-highlights span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
}

.revo-starlink-banner {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(141, 233, 255, .26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(141, 233, 255, .18), rgba(36, 211, 193, .09)),
    rgba(255, 255, 255, .07);
  box-shadow: 0 22px 64px rgba(0, 0, 0, .18);
}

.revo-starlink-banner small,
.revo-starlink-banner strong {
  display: block;
}

.revo-starlink-banner small {
  color: #8de9ff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.revo-starlink-banner strong {
  max-width: 820px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(21px, 2.3vw, 34px);
  line-height: 1.16;
  font-weight: 620;
}

.revo-starlink-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #06111f;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.revo-starlink-gallery {
  position: relative;
}

.revo-starlink-gallery::after {
  content: "SINAL ATIVO";
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(141, 233, 255, .38);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 17, 31, .68);
  box-shadow: 0 0 24px rgba(141, 233, 255, .24);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.revo-starlink-gallery::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 58px;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(141, 233, 255, .46);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  z-index: 2;
  animation: revoSignalSweep 2.8s ease-in-out infinite;
}

@keyframes revoSignalSweep {
  0%, 100% {
    opacity: .32;
    transform: rotate(-18deg) scale(.82);
  }
  50% {
    opacity: .9;
    transform: rotate(18deg) scale(1);
  }
}

@keyframes revoStarlinkRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes revoPlayPulse {
  0% {
    opacity: .72;
    transform: scale(.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

.revo-starlink-copy span {
  color: #8de9ff;
}

.revo-app-grid a:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
}

.revo-app-grid a:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #effdf8 100%);
}

.revo-app-grid a:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
}

.revo-home .clients .neo-section-head h2,
.revo-home .contact-copy h2,
.revo-home .form-heading strong {
  color: #0a1a2f;
}

@media (max-width: 760px) {
  .revo-hero::after {
    opacity: .34;
    background:
      linear-gradient(128deg, transparent 0 30%, rgba(0, 136, 204, .24) 30.2%, transparent 30.8% 100%),
      linear-gradient(34deg, transparent 0 75%, rgba(42, 176, 153, .22) 75.2%, transparent 75.9% 100%);
  }

  .revo-status div::after,
  .revo-layer-grid article::after,
  .revo-workline div::after {
    width: 58px;
  }
}

/* Revisao premium: contraste de botoes e rede visual mais inovadora. */
.revo-network {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.revo-network::before {
  content: "";
  position: absolute;
  right: clamp(24px, 7vw, 120px);
  top: 21%;
  width: min(44vw, 590px);
  height: min(48vw, 560px);
  opacity: .78;
  background:
    linear-gradient(38deg, transparent 0 28%, rgba(0, 136, 204, .48) 28.15%, transparent 28.65% 100%),
    linear-gradient(146deg, transparent 0 44%, rgba(42, 176, 153, .42) 44.15%, transparent 44.65% 100%),
    linear-gradient(88deg, transparent 0 58%, rgba(124, 58, 237, .34) 58.15%, transparent 58.58% 100%),
    linear-gradient(19deg, transparent 0 70%, rgba(242, 183, 5, .38) 70.15%, transparent 70.62% 100%);
}

.revo-network span {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  background: #0088cc;
  box-shadow: 0 0 0 8px rgba(0, 136, 204, .13), 0 0 28px rgba(0, 136, 204, .46);
}

.revo-network span:nth-child(1) {
  right: 35%;
  top: 26%;
  background: #0088cc;
}

.revo-network span:nth-child(2) {
  right: 16%;
  top: 35%;
  background: #2ab099;
}

.revo-network span:nth-child(3) {
  right: 28%;
  top: 58%;
  background: #7c3aed;
}

.revo-network span:nth-child(4) {
  right: 10%;
  top: 68%;
  background: #f2b705;
}

.revo-network span:nth-child(5) {
  right: 43%;
  top: 74%;
  background: #06b6d4;
}

.revo-actions .button,
.revo-starlink-copy .button {
  border: 1px solid transparent;
  box-shadow: none;
}

.revo-actions .revo-btn-primary {
  color: #fff;
  border-color: #006fb0;
  background: linear-gradient(135deg, #006fb0 0%, #00a6d6 100%);
  box-shadow: 0 14px 34px rgba(0, 111, 176, .24);
}

.revo-actions .revo-btn-outline {
  color: #075985 !important;
  border-color: rgba(0, 119, 182, .32);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(8, 47, 111, .08);
}

.revo-actions .revo-btn-soft {
  color: #0a2f6f !important;
  border-color: rgba(42, 176, 153, .24);
  background: linear-gradient(135deg, rgba(236, 253, 245, .92), rgba(240, 249, 255, .92));
}

.revo-actions .button:hover,
.revo-starlink-copy .button:hover {
  transform: translateY(-2px);
}

.revo-starlink-copy .revo-btn-light {
  color: #06111f !important;
  border-color: rgba(255, 255, 255, .72);
  background: linear-gradient(135deg, #fff 0%, #dff6ff 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.revo-starlink-copy .revo-btn-light:hover {
  color: #06111f !important;
}

.revo-section-title h2,
.revo-layer-grid h3,
.revo-app-grid strong,
.revo-workline strong,
.revo-manifest-grid h3,
.revo-home .clients h2,
.revo-home .contact h2 {
  color: #0a1a2f;
}

.revo-starlink .revo-section-title h2,
.revo-starlink h2 {
  color: #fff;
}

.revo-layer-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(250, 253, 255, .88)),
    radial-gradient(circle at 100% 0%, rgba(0, 136, 204, .14), transparent 28%);
}

.revo-layer-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(250, 253, 255, .88)),
    radial-gradient(circle at 100% 0%, rgba(42, 176, 153, .16), transparent 28%);
}

.revo-layer-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(250, 253, 255, .88)),
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, .13), transparent 28%);
}

.revo-layer-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(250, 253, 255, .88)),
    radial-gradient(circle at 100% 0%, rgba(242, 183, 5, .16), transparent 28%);
}

.revo-manifest-grid article {
  position: relative;
  overflow: hidden;
}

.revo-manifest-grid article::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0088cc, #2ab099, #7c3aed);
}

@media (max-width: 1180px) {
  .revo-network {
    opacity: .48;
  }
}

@media (max-width: 760px) {
  .revo-network {
    opacity: .22;
  }

  .revo-network::before {
    right: -70px;
    top: 14%;
    width: 360px;
    height: 420px;
  }

  .revo-network span {
    width: 10px;
    height: 10px;
  }

  .revo-starlink-orbit {
    right: -90px;
    top: 34px;
    width: 270px;
    opacity: .35;
  }

  .revo-starlink-promos {
    grid-template-columns: 1fr;
  }

  .revo-starlink-highlights,
  .revo-starlink-banner,
  .revo-starlink-video {
    grid-template-columns: 1fr;
  }

  .revo-starlink-banner a {
    width: 100%;
  }

  .revo-starlink-video {
    min-height: auto;
  }

  .revo-starlink-video iframe,
  .revo-starlink-video video {
    min-height: 220px;
  }

  .revo-video-caption {
    border-left: 0;
    border-top: 1px solid rgba(141, 233, 255, .18);
    padding: 18px;
  }
}

/* Movimento sutil para dar vida ao conceito tecnologico. */
.revo-hero-grid {
  animation: revoGridDrift 18s linear infinite;
}

.revo-network::before {
  animation: revoNetworkPulse 7s ease-in-out infinite;
}

.revo-network span {
  animation: revoNodeFloat 5.8s ease-in-out infinite;
}

.revo-network span:nth-child(2) {
  animation-delay: .8s;
}

.revo-network span:nth-child(3) {
  animation-delay: 1.4s;
}

.revo-network span:nth-child(4) {
  animation-delay: 2s;
}

.revo-network span:nth-child(5) {
  animation-delay: 2.6s;
}

.revo-command::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  opacity: .55;
  background: linear-gradient(115deg, transparent 0 28%, rgba(0, 136, 204, .16) 38%, transparent 50%);
  transform: translateX(-120%);
  animation: revoPanelScan 7s ease-in-out infinite;
  pointer-events: none;
}

.revo-command > * {
  position: relative;
  z-index: 1;
}

.revo-layer-grid article::before,
.revo-app-grid a::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  opacity: .5;
  background: linear-gradient(90deg, transparent, #0088cc, #2ab099, transparent);
  transform: translateX(-45%);
  animation: revoLineFlow 5.5s ease-in-out infinite;
}

.revo-layer-grid article:nth-child(2)::before,
.revo-app-grid a:nth-child(2)::before {
  animation-delay: .7s;
}

.revo-layer-grid article:nth-child(3)::before,
.revo-app-grid a:nth-child(3)::before {
  animation-delay: 1.2s;
}

.revo-layer-grid article:nth-child(4)::before {
  animation-delay: 1.7s;
}

@keyframes revoGridDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 76px 76px;
  }
}

@keyframes revoNetworkPulse {
  0%, 100% {
    opacity: .52;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: .86;
    transform: translate3d(-10px, 8px, 0) scale(1.025);
  }
}

@keyframes revoNodeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 0 8px rgba(0, 136, 204, .13), 0 0 28px rgba(0, 136, 204, .46);
  }
  50% {
    transform: translate3d(8px, -10px, 0);
    box-shadow: 0 0 0 11px rgba(0, 136, 204, .09), 0 0 38px rgba(0, 136, 204, .6);
  }
}

@keyframes revoPanelScan {
  0%, 34% {
    transform: translateX(-120%);
  }
  55%, 100% {
    transform: translateX(120%);
  }
}

@keyframes revoLineFlow {
  0%, 100% {
    opacity: .25;
    transform: translateX(-45%);
  }
  50% {
    opacity: .85;
    transform: translateX(45%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .revo-hero-grid,
  .revo-network::before,
  .revo-network span,
  .revo-command::before,
  .revo-layer-grid article::before,
  .revo-app-grid a::before {
    animation: none;
  }
}

/* Animacao de ativacao: o sistema acende em sequencia no primeiro impacto. */
.revo-activation {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.revo-activation i {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, #0088cc 18%, #24d3c1 62%, transparent);
  box-shadow: 0 0 22px rgba(36, 211, 193, .56);
  animation: revoPowerLine 5.4s ease-in-out infinite;
}

.revo-activation i::before,
.revo-activation i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #24d3c1;
  box-shadow: 0 0 0 7px rgba(36, 211, 193, .12), 0 0 30px rgba(36, 211, 193, .82);
  transform: translateY(-50%) scale(.5);
  animation: revoNodeIgnite 5.4s ease-in-out infinite;
}

.revo-activation i::before {
  left: 18%;
}

.revo-activation i::after {
  right: 9%;
}

.revo-activation i:nth-child(1) {
  width: min(44vw, 520px);
  right: 8%;
  top: 28%;
  transform: rotate(16deg) scaleX(.25);
}

.revo-activation i:nth-child(2) {
  width: min(36vw, 430px);
  right: 18%;
  top: 47%;
  transform: rotate(-24deg) scaleX(.25);
  animation-delay: 1.1s;
}

.revo-activation i:nth-child(2)::before,
.revo-activation i:nth-child(2)::after {
  animation-delay: 1.1s;
}

.revo-activation i:nth-child(3) {
  width: min(38vw, 460px);
  right: 4%;
  top: 66%;
  transform: rotate(8deg) scaleX(.25);
  background: linear-gradient(90deg, transparent, #7c3aed 18%, #0088cc 62%, transparent);
  box-shadow: 0 0 22px rgba(124, 58, 237, .42);
  animation-delay: 2.1s;
}

.revo-activation i:nth-child(3)::before,
.revo-activation i:nth-child(3)::after {
  background: #7c3aed;
  box-shadow: 0 0 0 7px rgba(124, 58, 237, .12), 0 0 30px rgba(124, 58, 237, .7);
  animation-delay: 2.1s;
}

.revo-activation i:nth-child(4) {
  width: min(30vw, 360px);
  right: 31%;
  top: 79%;
  transform: rotate(-12deg) scaleX(.25);
  background: linear-gradient(90deg, transparent, #f2b705 18%, #24d3c1 62%, transparent);
  animation-delay: 3s;
}

.revo-activation i:nth-child(4)::before,
.revo-activation i:nth-child(4)::after {
  background: #f2b705;
  box-shadow: 0 0 0 7px rgba(242, 183, 5, .12), 0 0 30px rgba(242, 183, 5, .7);
  animation-delay: 3s;
}

.revo-livebar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 2px;
}

.revo-livebar span {
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 136, 204, .12);
  overflow: hidden;
  position: relative;
}

.revo-livebar span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0088cc, #24d3c1);
  transform: scaleX(0);
  transform-origin: left;
  animation: revoLiveStatus 3.8s ease-in-out infinite;
}

.revo-livebar span:nth-child(2)::after {
  animation-delay: .25s;
}

.revo-livebar span:nth-child(3)::after {
  animation-delay: .5s;
}

.revo-livebar span:nth-child(4)::after {
  animation-delay: .75s;
}

.revo-livebar span:nth-child(5)::after {
  animation-delay: 1s;
}

.revo-command-top span {
  position: relative;
  padding-left: 24px;
}

.revo-command-top span::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .35);
  transform: translateY(-50%);
  animation: revoOnlinePulse 1.8s ease-out infinite;
}

@keyframes revoPowerLine {
  0%, 12% {
    opacity: 0;
    transform: rotate(var(--line-rotate, 0deg)) scaleX(.12);
  }
  28%, 66% {
    opacity: .95;
    transform: rotate(var(--line-rotate, 0deg)) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: rotate(var(--line-rotate, 0deg)) scaleX(1.08);
  }
}

.revo-activation i:nth-child(1) { --line-rotate: 16deg; }
.revo-activation i:nth-child(2) { --line-rotate: -24deg; }
.revo-activation i:nth-child(3) { --line-rotate: 8deg; }
.revo-activation i:nth-child(4) { --line-rotate: -12deg; }

@keyframes revoNodeIgnite {
  0%, 16%, 100% {
    opacity: 0;
    transform: translateY(-50%) scale(.4);
  }
  34%, 72% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes revoLiveStatus {
  0%, 18% {
    transform: scaleX(0);
    opacity: .35;
  }
  48%, 78% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: .35;
  }
}

@keyframes revoOnlinePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, .35);
  }
  100% {
    box-shadow: 0 0 0 9px rgba(22, 163, 74, 0);
  }
}

@media (max-width: 760px) {
  .revo-activation {
    opacity: .42;
  }

  .revo-activation i:nth-child(1),
  .revo-activation i:nth-child(2),
  .revo-activation i:nth-child(3),
  .revo-activation i:nth-child(4) {
    width: 310px;
    right: -58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .revo-activation i,
  .revo-activation i::before,
  .revo-activation i::after,
  .revo-livebar span::after,
  .revo-command-top span::before {
    animation: none;
  }
}

/* Ajuste do painel inicial: Starlink no lugar do logo repetido. */
.revo-command-starlink {
  grid-template-columns: 112px 1fr;
  min-height: 78px;
  padding: 14px 16px;
  border-color: rgba(0, 136, 204, .36);
  background:
    linear-gradient(135deg, #03172a 0%, #004f86 54%, #00a6d6 100%);
  box-shadow: 0 16px 38px rgba(0, 136, 204, .22);
}

/* Painel direito mais compacto e refinado. */
.revo-hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 382px);
}

.revo-command {
  gap: 8px;
  padding: 14px;
  max-width: 382px;
  justify-self: end;
}

.revo-livebar {
  gap: 5px;
  margin-bottom: 0;
}

.revo-livebar span {
  height: 4px;
}

.revo-command-starlink {
  grid-template-columns: 92px 1fr;
  min-height: 66px;
  padding: 11px 13px;
}

.revo-command-starlink img {
  width: 78px;
}

.revo-command-starlink strong {
  font-size: 13px;
}

.revo-command-starlink span {
  margin-top: 3px;
  font-size: 11px;
}

.revo-signal {
  padding: 12px 14px;
}

.revo-signal::before {
  top: 14px;
  right: 14px;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 5px rgba(42, 176, 153, .1);
}

.revo-signal strong {
  font-size: 16px;
  font-weight: 680;
}

.revo-signal span {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
}

.revo-command-footer {
  gap: 8px;
}

.revo-command-footer div {
  padding: 12px 13px;
}

.revo-command-footer b {
  font-size: 17px;
}

.revo-command-footer small {
  margin-top: 5px;
  font-size: 10px;
}

.revo-command-starlink img {
  width: 98px;
  filter: brightness(0) invert(1);
}

.revo-command-starlink div {
  min-width: 0;
}

.revo-command-starlink strong,
.revo-command-starlink span {
  display: block;
}

.revo-command-starlink strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 760;
}

.revo-command-starlink span {
  margin-top: 4px;
  padding: 0;
  color: rgba(255, 255, 255, .82);
  background: transparent;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 620;
  white-space: normal;
}

.revo-command-starlink span::before {
  display: none;
}

.revo-starlink-badge {
  display: none;
}

@media (max-width: 760px) {
  .revo-command-starlink {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .revo-command-starlink img {
    width: 112px;
  }
}

/* Credenciais dentro da primeira dobra. */
.revo-hero-proof {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: clamp(34px, 5vw, 58px);
}

.revo-hero-proof > div,
.revo-certified-seal {
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 47, 111, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 44px rgba(8, 17, 31, .08);
  backdrop-filter: blur(16px);
}

.revo-certified-seal {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  border-color: rgba(0, 136, 204, .24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(228, 248, 255, .88));
}

.revo-certified-seal img {
  width: 104px;
}

.revo-certified-seal span,
.revo-certified-seal strong,
.revo-hero-proof > div strong,
.revo-hero-proof > div span {
  display: block;
}

.revo-certified-seal span {
  color: #0077b6;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.revo-certified-seal strong {
  margin-top: 4px;
  color: #0a1a2f;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 720;
}

.revo-hero-proof > div strong {
  color: #0a2f6f;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  font-weight: 700;
}

.revo-hero-proof > div span {
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.revo-hero-proof > div {
  position: relative;
  overflow: hidden;
}

.revo-hero-proof > div::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 18px;
  opacity: .55;
  background:
    radial-gradient(circle at 0 50%, #0088cc 0 3px, transparent 4px),
    radial-gradient(circle at 50% 50%, #2ab099 0 3px, transparent 4px),
    radial-gradient(circle at 100% 50%, #f2b705 0 3px, transparent 4px),
    linear-gradient(90deg, transparent 0 3px, rgba(0, 136, 204, .32) 3px calc(100% - 3px), transparent calc(100% - 3px));
}

@media (max-width: 1180px) {
  .revo-hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .revo-hero-proof {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .revo-certified-seal {
    grid-template-columns: 104px 1fr;
  }

  .revo-certified-seal img {
    width: 96px;
  }
}

/* Ajuste para notebooks e monitores com menor altura. */
@media (max-height: 820px) and (min-width: 900px) {
  .revo-hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 38px;
  }

  .revo-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
    gap: clamp(28px, 5vw, 64px);
  }

  .revo-hero h1 {
    max-width: 690px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.07;
  }

  .revo-hero-copy p {
    max-width: 600px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.58;
  }

  .revo-kicker {
    margin-bottom: 12px;
  }

  .revo-actions {
    margin-top: 24px;
  }

  .revo-actions .button {
    min-height: 42px;
    padding: 11px 16px;
    font-size: 13px;
  }

  .revo-command {
    gap: 8px;
    padding: 14px;
  }

  .revo-livebar span {
    height: 4px;
  }

  .revo-command-starlink {
    grid-template-columns: 98px 1fr;
    min-height: 68px;
    padding: 12px 14px;
  }

  .revo-command-starlink img {
    width: 86px;
  }

  .revo-command-starlink strong {
    font-size: 14px;
  }

  .revo-command-starlink span {
    font-size: 11px;
  }

  .revo-signal {
    padding: 13px 15px;
  }

  .revo-signal strong {
    font-size: 17px;
  }

  .revo-signal span {
    margin-top: 5px;
    font-size: 12px;
  }

  .revo-command-footer div {
    padding: 13px 14px;
  }

  .revo-command-footer b {
    font-size: 18px;
  }

  .revo-command-footer small {
    font-size: 11px;
  }

  .revo-hero-proof {
    margin-top: 24px;
  }

  .revo-hero-proof > div {
    min-height: 74px;
    padding: 14px 16px;
  }

  .revo-hero-proof > div strong {
    font-size: 22px;
  }

  .revo-hero-proof > div span {
    margin-top: 6px;
    font-size: 11px;
  }
}

@media (max-height: 720px) and (min-width: 900px) {
  .revo-hero {
    padding-top: 106px;
    padding-bottom: 30px;
  }

  .revo-hero h1 {
    font-size: clamp(32px, 3.6vw, 50px);
  }

  .revo-command {
    max-width: 370px;
    justify-self: end;
  }

  .revo-signal {
    padding: 11px 14px;
  }

  .revo-hero-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
  }

  .revo-hero-proof > div {
    min-height: 66px;
  }
}

/* Header compacto para mostrar mais conteudo na primeira dobra. */
html {
  scroll-padding-top: 72px;
}

.top-strip {
  gap: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 11.5px;
  font-weight: 650;
}

.site-header {
  top: 24px;
  min-height: 54px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 14px;
}

.site-header.is-scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
}

.brand img {
  width: 138px;
}

.nav {
  gap: clamp(7px, .7vw, 11px);
  font-size: 11.5px;
  font-weight: 650;
}

.nav a {
  padding-top: 7px;
  padding-bottom: 7px;
}

.nav-action {
  padding: 8px 13px !important;
}

.menu-toggle {
  width: 38px;
  height: 38px;
}

.menu-toggle span {
  width: 18px;
  margin: 4px auto;
}

.revo-hero {
  padding-top: 118px;
}

@media (max-width: 1180px) {
  .nav {
    top: 78px;
    max-height: calc(100vh - 94px);
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header {
    min-height: 62px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    width: 128px;
  }

  .menu-toggle {
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .nav {
    top: 66px;
    max-height: calc(100vh - 78px);
  }

  .revo-hero {
    padding-top: 88px;
  }
}

/* Override final: painel superior direito menor e com margens consistentes. */
.revo-hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(292px, 360px);
  gap: clamp(28px, 5vw, 72px);
}

.revo-command {
  width: min(360px, 100%);
  max-width: 360px;
  gap: 7px;
  padding: 12px;
  border-radius: 8px;
}

.revo-command-starlink {
  grid-template-columns: 82px 1fr;
  min-height: 62px;
  padding: 10px 12px;
}

.revo-command-starlink img {
  width: 72px;
}

.revo-command-starlink strong {
  font-size: 12.5px;
  line-height: 1.18;
}

.revo-command-starlink span {
  margin-top: 3px;
  font-size: 10.5px;
  line-height: 1.28;
}

.revo-signal {
  padding: 10px 12px;
}

.revo-signal strong {
  font-size: 15px;
}

.revo-signal span {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.3;
}

.revo-command-footer {
  gap: 7px;
}

.revo-command-footer div {
  padding: 10px 11px;
}

.revo-command-footer b {
  font-size: 16px;
}

.revo-command-footer small {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.2;
}

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

.revo-plan-strip div {
  min-height: 150px;
  padding: 20px;
}

.revo-plan-strip small {
  display: block;
}

.revo-plan-strip strong {
  margin-top: 12px;
  font-size: clamp(20px, 2vw, 28px);
}

.revo-plan-strip span {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 560;
}

@media (max-width: 1180px) {
  .revo-command {
    justify-self: start;
  }

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

@media (max-width: 760px) {
  .revo-hero-shell {
    grid-template-columns: 1fr;
  }

  .revo-command {
    width: 100%;
    max-width: none;
  }

  .revo-command-starlink {
    grid-template-columns: 86px 1fr;
  }

  .revo-plan-strip {
    grid-template-columns: 1fr;
  }

  .revo-plan-strip div {
    min-height: auto;
  }
}

/* Menu mobile refinado. */
@media (max-width: 1180px) {
  .site-header {
    z-index: 80;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    margin-left: auto;
    box-shadow: 0 10px 26px rgba(8, 17, 31, .08);
  }

  .menu-toggle span {
    margin: 3px auto;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    top: 76px;
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 92px);
    padding: 10px;
    gap: 3px;
    border-color: rgba(8, 47, 111, .12);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 250, 253, .98));
    box-shadow: 0 24px 70px rgba(8, 17, 31, .18);
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    display: grid;
    animation: mobileMenuIn .18s ease-out;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #172033;
    font-size: 14px;
    font-weight: 650;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: #075985;
    border-color: rgba(0, 136, 204, .12);
    background: rgba(224, 242, 254, .72);
    outline: none;
  }

  .nav-action {
    justify-content: center;
    min-height: 44px !important;
    margin-top: 6px;
    color: #fff !important;
    background: linear-gradient(135deg, #006fb0, #00a6d6) !important;
    font-weight: 780 !important;
    box-shadow: 0 12px 30px rgba(0, 111, 176, .22);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 56px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .94);
  }

  .brand img {
    width: 122px;
  }

  .menu-toggle {
    position: fixed;
    top: 9px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .nav {
    top: 58px;
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 68px);
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajuste final: menu mobile em painel, sem faixa vazia e com leitura completa. */
@media (max-width: 1180px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    top: 0;
    z-index: 120;
    min-height: 58px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .96);
  }

  .top-strip {
    display: none;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    position: fixed;
    top: 10px;
    right: 12px;
    z-index: 140;
    width: 40px;
    height: 40px;
    border-color: rgba(8, 47, 111, .12);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 125;
    width: min(86vw, 336px);
    height: 100dvh;
    max-height: none;
    padding: 64px 12px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    border-left: 1px solid rgba(8, 47, 111, .12);
    border-radius: 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: -22px 0 60px rgba(8, 17, 31, .2);
    transform: translateX(104%);
    transition: transform .22s ease, opacity .22s ease;
    opacity: 0;
  }

  .nav.is-open {
    display: grid;
    align-content: start;
    transform: translateX(0);
    animation: none;
    opacity: 1;
  }

  .nav a {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13.5px;
    line-height: 1.25;
  }

  .nav-action {
    min-height: 42px !important;
  }
}

@media (max-width: 420px) {
  .nav {
    width: min(90vw, 320px);
  }
}

/* Destaque das aplicacoes proprias SIPRODI. */
.revo-apps {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 250, 253, .98), rgba(255, 255, 255, .96)),
    radial-gradient(circle at 12% 18%, rgba(0, 136, 204, .16), transparent 34%),
    radial-gradient(circle at 88% 6%, rgba(24, 166, 183, .16), transparent 28%);
}

.revo-apps::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(8, 47, 111, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 47, 111, .07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.revo-apps > * {
  position: relative;
  z-index: 1;
}

.revo-apps-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

.revo-apps-head .revo-section-title {
  margin-bottom: 0;
}

.revo-apps-head p {
  margin: 0 0 6px;
  color: #465366;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  font-weight: 450;
}

.revo-app-grid {
  gap: 18px;
}

.revo-app-grid a {
  min-height: 330px;
  padding: 28px;
  isolation: isolate;
  border-color: rgba(8, 47, 111, .11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 251, 254, .94));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.revo-app-card {
  grid-template-rows: auto auto auto 1fr auto auto;
}

.revo-app-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: #e8f4fb;
  box-shadow: 0 14px 34px rgba(8, 17, 31, .08);
}

.revo-app-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 204, .28);
  box-shadow: 0 28px 62px rgba(8, 17, 31, .1);
}

.revo-app-grid a::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 136, 204, .14), rgba(24, 166, 183, .18));
  box-shadow: inset 0 0 0 1px rgba(0, 136, 204, .18);
}

.revo-app-card::before {
  top: 30px;
  right: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(125, 211, 252, .22));
}

.revo-app-grid a::after {
  z-index: -1;
}

.revo-app-grid small {
  padding-right: 56px;
  color: #006fb0;
  letter-spacing: 0;
}

.revo-app-grid strong {
  align-self: start;
  margin-top: 18px;
  color: #081b33;
  font-size: clamp(23px, 2.1vw, 30px);
}

.revo-app-grid span {
  margin-top: 14px;
  color: #4f5d70;
  font-size: 15px;
  line-height: 1.68;
}

.revo-app-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.revo-app-grid li {
  position: relative;
  padding-left: 18px;
  color: #344054;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 650;
}

.revo-app-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #18a6b7;
  box-shadow: 0 0 0 4px rgba(24, 166, 183, .11);
}

.revo-app-grid em {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 136, 204, .18);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #006fb0, #18a6b7);
  font-size: 13px;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
}

.revo-app-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(8, 47, 111, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 42px rgba(8, 17, 31, .055);
  backdrop-filter: blur(16px);
}

.revo-app-capabilities div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(247, 251, 254, .9);
}

.revo-app-capabilities strong,
.revo-app-capabilities span {
  display: block;
}

.revo-app-capabilities strong {
  color: #082f6f;
  font-size: 16px;
}

.revo-app-capabilities span {
  margin-top: 8px;
  color: #5a6474;
  font-size: 14px;
  line-height: 1.58;
}

.revo-app-capabilities a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #006fb0, #18a6b7);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 111, 176, .22);
}

@media (max-width: 980px) {
  .revo-apps-head,
  .revo-app-capabilities {
    grid-template-columns: 1fr;
  }

  .revo-app-capabilities a {
    min-height: 48px;
  }
}

@media (max-width: 680px) {
  .revo-app-grid a {
    min-height: auto;
    padding: 18px;
  }

  .revo-app-grid strong {
    margin-top: 16px;
  }

  .revo-app-card > img {
    aspect-ratio: 16 / 9;
  }

  .revo-app-capabilities {
    padding: 10px;
  }
}

/* SEO local Starlink. */
.revo-starlink-local {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .46fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.revo-starlink-local > div,
.revo-starlink-local ul {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.revo-starlink-local small {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.revo-starlink-local strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.revo-starlink-local p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .74);
}

.revo-starlink-local ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.revo-starlink-local li {
  padding: 11px 13px;
  border-radius: 8px;
  color: #eaf7ff;
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 750;
}

.starlink-local-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 88vh;
  padding: 140px clamp(20px, 6vw, 88px) 72px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(3, 12, 24, .94), rgba(4, 46, 77, .88)),
    url("../img/starlink-kit-standard-photo.jpg") center/cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.starlink-local-hero > div:not(.starlink-tech-grid):not(.starlink-signal-lines):not(.starlink-orbit-points),
.starlink-local-hero > figure {
  position: relative;
  z-index: 2;
}

.starlink-tech-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(125, 211, 252, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(115deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
  animation: starlinkGridMove 14s linear infinite;
}

.starlink-tech-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(125, 211, 252, .24), transparent 20%),
    radial-gradient(circle at 78% 18%, rgba(24, 166, 183, .2), transparent 22%),
    radial-gradient(circle at 68% 78%, rgba(242, 183, 5, .12), transparent 24%);
  animation: starlinkGlowShift 9s ease-in-out infinite alternate;
}

.starlink-signal-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.starlink-signal-lines i {
  position: absolute;
  left: -18%;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, .88), transparent);
  box-shadow: 0 0 18px rgba(125, 211, 252, .44);
  transform: rotate(-15deg);
  animation: starlinkSignalPass 5.8s ease-in-out infinite;
}

.starlink-signal-lines i:nth-child(1) {
  top: 22%;
}

.starlink-signal-lines i:nth-child(2) {
  top: 42%;
  animation-delay: 1.3s;
}

.starlink-signal-lines i:nth-child(3) {
  top: 64%;
  animation-delay: 2.6s;
}

.starlink-signal-lines i:nth-child(4) {
  top: 82%;
  animation-delay: 3.8s;
}

.starlink-orbit-points {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.starlink-orbit-points span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7dd3fc;
  box-shadow: 0 0 0 8px rgba(125, 211, 252, .08), 0 0 26px rgba(125, 211, 252, .75);
  opacity: .2;
  animation: starlinkPointPulse 3.6s ease-in-out infinite;
}

.starlink-orbit-points span:nth-child(1) { top: 18%; left: 58%; }
.starlink-orbit-points span:nth-child(2) { top: 30%; left: 88%; animation-delay: .55s; }
.starlink-orbit-points span:nth-child(3) { top: 58%; left: 72%; animation-delay: 1.15s; }
.starlink-orbit-points span:nth-child(4) { top: 74%; left: 48%; animation-delay: 1.7s; }
.starlink-orbit-points span:nth-child(5) { top: 46%; left: 34%; animation-delay: 2.25s; }

.starlink-local-hero > div:not(.starlink-tech-grid):not(.starlink-signal-lines):not(.starlink-orbit-points) > img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.starlink-local-hero span {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(125, 211, 252, .32);
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.starlink-local-hero h1 {
  max-width: 860px;
  margin: 22px 0 0;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.starlink-local-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.68;
}

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

.starlink-signal-callout {
  display: grid;
  gap: 9px;
  max-width: 680px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, .3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 136, 204, .2), rgba(255, 255, 255, .08));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.starlink-signal-callout strong {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.16;
}

.starlink-signal-callout span {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  text-transform: none;
}

.starlink-signal-callout a {
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #06111f;
  background: #7dd3fc;
  font-size: 13px;
  font-weight: 850;
}

.starlink-local-hero figure {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.starlink-local-hero figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  filter: none;
}

@keyframes starlinkGridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 52px 52px, 52px 52px;
  }
}

@keyframes starlinkGlowShift {
  from {
    opacity: .55;
    transform: scale(1);
  }
  to {
    opacity: .95;
    transform: scale(1.08);
  }
}

@keyframes starlinkSignalPass {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(-15deg);
  }
  18%, 64% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(230%) rotate(-15deg);
  }
}

@keyframes starlinkPointPulse {
  0%, 100% {
    opacity: .16;
    transform: scale(.7);
  }
  45% {
    opacity: 1;
    transform: scale(1);
  }
}

.starlink-local-section {
  background: linear-gradient(180deg, #fff, #f5f8fc);
}

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

.starlink-local-grid article,
.starlink-city-grid article,
.faq-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(8, 47, 111, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 17, 31, .055);
}

.starlink-local-grid small {
  color: #0088cc;
  font-size: 13px;
  font-weight: 900;
}

.starlink-local-grid strong,
.starlink-city-grid strong,
.faq-grid h3 {
  display: block;
  margin: 14px 0 0;
  color: #082f6f;
  font-size: 20px;
  line-height: 1.22;
}

.starlink-local-grid p,
.faq-grid p,
.starlink-city-grid span {
  display: block;
  margin: 13px 0 0;
  color: #5a6474;
  line-height: 1.65;
}

.starlink-city-section {
  background:
    linear-gradient(135deg, rgba(247, 251, 254, .98), rgba(238, 248, 252, .96));
}

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

.starlink-city-grid article {
  min-height: 190px;
}

.starlink-local-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 72px;
  padding-bottom: 72px;
  background: #06111f;
}

.starlink-local-media .revo-starlink-gallery,
.starlink-local-media .revo-starlink-video {
  margin: 0;
}

.starlink-local-media .revo-starlink-gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 12px;
  height: 100%;
}

.starlink-local-media .revo-starlink-gallery .wide {
  grid-column: span 6;
  grid-row: span 2;
  height: 100%;
}

.starlink-local-media .revo-starlink-gallery img {
  height: 100%;
  min-height: 0;
}

.starlink-local-media .revo-starlink-gallery img:nth-child(2) {
  grid-column: span 6;
  grid-row: span 2;
  height: 100%;
}

.starlink-local-media .revo-starlink-gallery img:nth-child(3),
.starlink-local-media .revo-starlink-gallery img:nth-child(4),
.starlink-local-media .revo-starlink-gallery img:nth-child(5),
.starlink-local-media .revo-starlink-gallery img:nth-child(6) {
  grid-column: span 3;
}

.starlink-local-media .revo-starlink-video {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 0;
}

.starlink-local-media .revo-starlink-video video {
  min-height: 360px;
  height: auto;
}

.starlink-local-media .revo-video-caption {
  min-height: 0;
  border-top: 0;
  border-left: 1px solid rgba(141, 233, 255, .18);
  padding: 24px;
}

@media (max-width: 1180px) {
  .starlink-local-grid,
  .starlink-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .starlink-local-media,
  .starlink-local-hero,
  .revo-starlink-local {
    grid-template-columns: 1fr;
  }

  .starlink-local-media .revo-starlink-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .starlink-local-media .revo-starlink-gallery .wide {
    grid-column: 1 / -1;
  }

  .starlink-local-media .revo-starlink-gallery img:nth-child(2) {
    grid-column: 1 / -1;
    height: 220px;
  }
}

@media (max-width: 680px) {
  .starlink-local-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .starlink-tech-grid {
    opacity: .24;
    background-size: 40px 40px;
  }

  .starlink-signal-lines i {
    width: 82%;
  }

  .starlink-orbit-points span:nth-child(2),
  .starlink-orbit-points span:nth-child(4) {
    display: none;
  }

  .starlink-local-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .starlink-local-actions .button {
    width: 100%;
  }

  .starlink-signal-callout a {
    width: 100%;
    text-align: center;
  }

  .starlink-local-grid,
  .starlink-city-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .starlink-local-media .revo-starlink-gallery {
    grid-template-columns: 1fr;
  }

  .starlink-local-media .revo-starlink-gallery .wide,
  .starlink-local-media .revo-starlink-gallery img,
  .starlink-local-media .revo-starlink-gallery img:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .starlink-tech-grid,
  .starlink-tech-grid::after,
  .starlink-signal-lines i,
  .starlink-orbit-points span {
    animation: none;
  }
}

/* Ajuste final do topo Starlink: compacto, legivel e com efeito visivel. */
.starlink-local-hero {
  grid-template-columns: minmax(0, .98fr) minmax(300px, .52fr);
  gap: clamp(22px, 4vw, 48px);
  min-height: auto;
  padding-top: 104px;
  padding-bottom: 46px;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 136, 204, .34), transparent 26%),
    linear-gradient(120deg, #030c18 0%, #052a45 58%, #06111f 100%);
}

.starlink-local-hero > div:not(.starlink-tech-grid):not(.starlink-signal-lines):not(.starlink-orbit-points) {
  max-width: 760px;
}

.starlink-local-hero > div:not(.starlink-tech-grid):not(.starlink-signal-lines):not(.starlink-orbit-points) > img {
  width: 124px;
}

.starlink-local-hero span {
  margin-top: 16px;
}

.starlink-local-hero h1 {
  max-width: 740px;
  margin-top: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
}

.starlink-local-hero p {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(15.5px, 1.25vw, 18px);
  line-height: 1.58;
}

.starlink-local-actions {
  margin-top: 22px;
}

.starlink-signal-callout {
  max-width: 620px;
  margin-top: 18px;
  padding: 15px 16px;
}

.starlink-signal-callout strong {
  font-size: clamp(19px, 1.7vw, 24px);
}

.starlink-signal-callout span {
  font-size: 14px;
}

.starlink-local-hero figure,
.starlink-hero-visual {
  position: relative;
  align-self: center;
  justify-self: end;
  display: grid;
  gap: 12px;
  width: min(430px, 100%);
  max-width: 430px;
  margin: 0;
  padding: 14px;
  overflow: visible;
  border: 1px solid rgba(125, 211, 252, .22);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .07));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
}

.starlink-hero-visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  filter: none;
}

.starlink-photo-badge {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 11px 13px;
  border: 1px solid rgba(0, 136, 204, .36);
  border-radius: 8px;
  background: linear-gradient(135deg, #03172a 0%, #004f86 54%, #00a6d6 100%);
  box-shadow: 0 16px 38px rgba(0, 136, 204, .22);
  overflow: visible;
}

.starlink-badge-mark {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 68px;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.starlink-badge-mark img {
  display: block;
  width: 82px;
  height: 82px;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1) !important;
}

.starlink-photo-badge > div,
.starlink-photo-badge div,
.starlink-photo-badge strong,
.starlink-photo-badge span {
  min-width: 0;
}

.starlink-photo-badge strong {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 760;
}

.starlink-photo-badge span {
  margin: 7px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, .82);
  background: transparent;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 620;
  text-transform: none;
}

.starlink-tech-grid {
  z-index: 0;
  opacity: .52;
  background-size: 40px 40px;
  animation-duration: 9s;
}

.starlink-signal-lines {
  z-index: 1;
}

.starlink-signal-lines i {
  left: -28%;
  width: 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, .98), #fff, transparent);
  box-shadow: 0 0 22px rgba(125, 211, 252, .82);
  animation-duration: 4s;
}

.starlink-orbit-points span {
  width: 10px;
  height: 10px;
  opacity: .45;
  box-shadow: 0 0 0 10px rgba(125, 211, 252, .1), 0 0 34px rgba(125, 211, 252, .95);
}

@media (max-width: 860px) {
  .starlink-local-hero {
    grid-template-columns: 1fr;
    padding-top: 78px;
    padding-bottom: 32px;
  }

  .starlink-local-hero h1 {
    font-size: clamp(29px, 8.8vw, 39px);
  }

  .starlink-local-hero p {
    font-size: 15px;
  }

  .starlink-local-actions {
    margin-top: 18px;
  }

  .starlink-signal-callout {
    margin-top: 16px;
    padding: 14px;
  }

  .starlink-local-hero figure,
  .starlink-hero-visual {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    gap: 10px;
    padding: 10px;
  }

  .starlink-hero-visual > img {
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .starlink-photo-badge {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 76px;
    padding: 10px 12px;
  }

  .starlink-badge-mark {
    width: 82px;
    height: 62px;
  }

  .starlink-badge-mark img {
    width: 76px;
    height: 76px;
  }

  .starlink-photo-badge strong {
    font-size: 13px;
    letter-spacing: 0;
  }

  .starlink-photo-badge span {
    margin-top: 5px;
    font-size: 10px;
  }

  .starlink-signal-lines i {
    width: 78%;
  }
}
