:root {
  --bg: #07111f;
  --bg-soft: #0d1728;
  --surface: rgba(12, 24, 39, 0.78);
  --surface-strong: #0f1b2d;
  --surface-alt: #101f33;
  --text: #f4f7fb;
  --muted: #9fb0c6;
  --line: rgba(143, 181, 221, 0.18);
  --primary: #1f7dff;
  --primary-dark: #0f57c5;
  --accent: #ff8f1f;
  --success: #4fd0a3;
  --shadow: 0 30px 80px rgba(2, 8, 20, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 125, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 143, 31, 0.09), transparent 18%),
    linear-gradient(180deg, #08111d 0%, #091423 30%, #07111f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: #b8c9df;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), var(--primary));
}

h1,
h2,
h3,
strong {
  font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
  margin-bottom: 1.35rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  max-width: 15ch;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
  white-space: nowrap;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), #35a2ff);
  color: #fff;
  box-shadow: 0 18px 35px rgba(31, 125, 255, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(31, 125, 255, 0.36);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #eff5ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: #d7e7ff;
}

.text-link::after {
  content: "↗";
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translate(2px, -2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 33, 57, 0.08);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(11, 33, 57, 0.1);
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: clamp(150px, 16vw, 210px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.2rem;
}

.brand-text small {
  color: #4f6276;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  color: #17324d;
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(255, 255, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-dark);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  justify-self: end;
  padding: 0.55rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(11, 33, 57, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.nav-toggle span {
  width: 1.35rem;
  height: 2px;
  background: #17324d;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  padding-top: calc(3.4rem + 1vw);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  max-width: 13ch;
}

.lead {
  font-size: 1.12rem;
  max-width: 62ch;
}

.hero-support {
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-highlights li {
  position: relative;
  padding: 1rem 1rem 1rem 2.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce9fa;
}

.hero-highlights li::before,
.hero-highlights li::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-highlights li::before {
  left: 1rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent), #ffbc5a);
  box-shadow: 0 0 0 5px rgba(255, 143, 31, 0.13);
}

.hero-highlights li::after {
  left: 1.35rem;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  transform: translateY(-50%);
  background: #fff;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  padding: 1.4rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(15, 25, 41, 0.95), rgba(7, 14, 25, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
}

.visual-frame::before {
  top: -2rem;
  right: -1rem;
  width: 10rem;
  height: 10rem;
  background: rgba(31, 125, 255, 0.22);
}

.visual-frame::after {
  bottom: -3rem;
  left: -2rem;
  width: 9rem;
  height: 9rem;
  background: rgba(255, 143, 31, 0.14);
}

.visual-topline,
.panel-head,
.visual-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: #bdd0e7;
}

.visual-topline,
.panel-head {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.technical-board {
  position: relative;
  min-height: 430px;
  margin: 1.5rem 0 1.2rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(6, 14, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.technical-board::before,
.technical-board::after {
  content: "";
  position: absolute;
  inset: 0;
}

.technical-board::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.technical-board::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 125, 255, 0.1), transparent 25%),
    linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.03) 50%, transparent 80%),
    linear-gradient(transparent 20%, rgba(255, 255, 255, 0.03) 50%, transparent 80%);
}

.board-center,
.board-node,
.board-spec,
.panel-badge,
.value-card,
.trust-card,
.solution-card,
.application-card,
.diferencial-card,
.process-card,
.contact-card,
.contact-form-wrap,
.faq-item,
.cta-panel,
.about-panel {
  backdrop-filter: blur(14px);
}

.board-center,
.board-node,
.board-spec {
  position: absolute;
  z-index: 1;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 27, 45, 0.88);
  box-shadow: 0 18px 38px rgba(2, 8, 20, 0.28);
}

.board-center {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(72%, 320px);
  padding: 1.4rem;
}

.board-chip {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 125, 255, 0.12);
  color: #b8d8ff;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.board-center strong {
  display: block;
  font-size: 1.38rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.board-center p {
  margin-bottom: 0;
  line-height: 1.65;
}

.board-node {
  width: 180px;
  padding: 0.95rem 1rem;
  font-weight: 700;
  color: #eef5ff;
}

.board-node::before {
  content: "";
  position: absolute;
  inset: auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 143, 31, 0.15);
}

.node-top-left {
  top: 1.8rem;
  left: 1.5rem;
}

.node-top-left::before {
  right: -20px;
  bottom: 18px;
}

.node-top-right {
  top: 1.8rem;
  right: 1.5rem;
}

.node-top-right::before {
  left: -20px;
  bottom: 18px;
}

.node-bottom-left {
  left: 1.5rem;
  bottom: 3.8rem;
}

.node-bottom-left::before {
  right: -20px;
  top: 18px;
}

.node-bottom-right {
  right: 1.5rem;
  bottom: 3.8rem;
}

.node-bottom-right::before {
  left: -20px;
  top: 18px;
}

.board-spec {
  padding: 0.8rem 0.95rem;
  color: #d4e5fb;
  font-size: 0.88rem;
}

.spec-left {
  left: 1.3rem;
  top: 11rem;
}

.spec-right {
  right: 1.3rem;
  top: 11rem;
}

.spec-bottom {
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: calc(100% - 2.8rem);
  text-align: center;
}

.visual-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-footer strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.showcase-frame {
  display: grid;
  gap: 1.5rem;
}

.showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.85fr);
  gap: 1.4rem;
  align-items: center;
}

.showcase-layout.image-only {
  grid-template-columns: 1fr;
  justify-items: center;
}

.showcase-layout.image-only .showcase-media {
  justify-self: center;
  width: min(100%, 360px);
}

.showcase-content {
  max-width: 38ch;
}

.showcase-kicker {
  margin-bottom: 0.8rem;
  color: #bfd1e8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-title {
  margin-bottom: 1rem;
  max-width: 13ch;
  font-size: clamp(1.85rem, 2.6vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.showcase-copy {
  margin-bottom: 1.3rem;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.showcase-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #edf5ff;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffd07f);
  box-shadow: 0 0 0 5px rgba(255, 143, 31, 0.12);
  transform: translateY(-50%);
}

.showcase-cta {
  width: fit-content;
}

.showcase-media {
  position: relative;
  width: min(100%, 320px);
  justify-self: end;
}

.showcase-media::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  right: -1rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 999px;
  background: rgba(31, 125, 255, 0.18);
  filter: blur(12px);
  z-index: -1;
}

.showcase-image-shell {
  padding: 0.8rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 17, 30, 0.82);
  box-shadow: 0 22px 42px rgba(1, 8, 19, 0.34);
  animation: gentle-float 6.5s ease-in-out infinite;
}

.showcase-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  object-fit: cover;
}

.showcase-media-note {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 20, 35, 0.82);
}

.showcase-media-note strong {
  font-size: 1rem;
}

.showcase-media-note span {
  color: #b6c8dd;
  line-height: 1.65;
}

.showcase-specialties {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.showcase-specialty-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.showcase-specialty-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 125, 255, 0.26);
  background: rgba(255, 255, 255, 0.055);
}

.showcase-card-label {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #a9bfd9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-specialty-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.showcase-bottom {
  display: grid;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-bottom-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.showcase-bottom-head strong {
  font-size: 1rem;
}

.showcase-bottom-head span {
  color: #b6c8dd;
  max-width: 38ch;
  line-height: 1.65;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.showcase-tags span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #e2edfb;
}

.featured-products-section {
  padding-top: 1rem;
}

.product-groups {
  display: grid;
  gap: 1.5rem;
}

.product-group {
  padding: 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(7, 15, 27, 0.7);
  box-shadow: 0 18px 40px rgba(3, 8, 18, 0.2);
}

.product-group-head {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-kicker {
  margin-bottom: 0.45rem;
  color: #a9bfd9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-group-head h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.product-group-head p:last-child {
  max-width: 56ch;
  margin-bottom: 0;
}

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

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

.product-card {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 125, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.product-media {
  padding: 0.8rem;
  background: linear-gradient(180deg, rgba(31, 125, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
}

.product-card-body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.05rem 1.15rem;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(31, 125, 255, 0.12);
  color: #cce0ff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-card h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  color: #f5f9ff;
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.trust-strip {
  padding: 0 0 2rem;
}

.trust-grid,
.value-grid,
.cards-grid,
.contact-cards,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.trust-card,
.solution-card,
.application-card,
.diferencial-card,
.process-card,
.contact-card,
.faq-item,
.about-panel,
.contact-form-wrap,
.cta-panel,
.value-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(3, 8, 18, 0.2);
}

.trust-card {
  padding: 1.3rem;
  border-radius: var(--radius-md);
}

.trust-card strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.trust-card p {
  margin-bottom: 0;
  line-height: 1.65;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

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

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

.value-card {
  padding: 1.15rem;
  border-radius: 18px;
}

.value-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.about-visual {
  position: relative;
}

.about-panel {
  position: relative;
  min-height: 100%;
  padding: 1.4rem;
  border-radius: 30px;
  overflow: hidden;
}

.panel-body {
  position: relative;
  min-height: 430px;
  padding: 1.6rem 0 0;
}

.panel-badge {
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(14, 31, 55, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eaf2ff;
}

.panel-lines {
  position: absolute;
  inset: 0;
}

.panel-lines span {
  position: absolute;
  background: linear-gradient(90deg, rgba(31, 125, 255, 0.08), rgba(31, 125, 255, 0.5), rgba(255, 143, 31, 0.12));
  border-radius: 999px;
}

.panel-lines span:nth-child(1) {
  top: 5.5rem;
  left: 1rem;
  width: 75%;
  height: 2px;
}

.panel-lines span:nth-child(2) {
  top: 10.5rem;
  right: 0;
  width: 60%;
  height: 2px;
}

.panel-lines span:nth-child(3) {
  bottom: 8rem;
  left: 12%;
  width: 65%;
  height: 2px;
}

.panel-lines span:nth-child(4) {
  bottom: 4rem;
  right: 14%;
  width: 38%;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(31, 125, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.segment-list {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.segment-list span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dae8fb;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 17ch;
}

#aplicacoes .section-heading h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
  line-height: 1.18;
  max-width: 30ch;
}

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

.solution-card,
.diferencial-card,
.application-card {
  position: relative;
  padding: 1.55rem;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.solution-card:hover,
.solution-card:focus-within,
.application-card:hover,
.diferencial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 125, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.icon-box {
  width: 3.35rem;
  height: 3.35rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(31, 125, 255, 0.18), rgba(255, 143, 31, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-box svg {
  width: 1.65rem;
  fill: #eaf3ff;
}

.solution-card p,
.diferencial-card p {
  min-height: 7.4rem;
}

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

.application-card {
  min-height: 140px;
  display: flex;
  align-items: end;
}

.application-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #f0f6ff;
}

.application-card span::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #77c0ff);
  box-shadow: 0 0 0 6px rgba(31, 125, 255, 0.12);
}

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

.diferencial-card::before {
  content: "";
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  background:
    linear-gradient(150deg, rgba(31, 125, 255, 0.18), rgba(255, 143, 31, 0.16)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-process {
  overflow: hidden;
}

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

.process-grid::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 2rem);
  right: calc(12.5% + 2rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 125, 255, 0.1), rgba(31, 125, 255, 0.55), rgba(255, 143, 31, 0.1));
}

.process-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 26px;
}

.step-number {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31, 125, 255, 0.22), rgba(255, 143, 31, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.cta-section {
  padding-top: 1rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(31, 125, 255, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, #0c1727, #111f36);
}

.cta-panel h2 {
  max-width: 14ch;
}

.cta-panel p:last-child {
  max-width: 60ch;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.contact-cards {
  margin: 2rem 0 1.35rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 1.25rem;
  border-radius: 22px;
  display: grid;
  gap: 0.5rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(31, 125, 255, 0.28);
}

.contact-label {
  color: #aac0da;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card strong {
  font-size: 1.02rem;
  word-break: break-word;
}

.static-card {
  cursor: default;
}

.contact-note {
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 18px 18px 0;
}

.contact-note strong {
  display: block;
  margin-bottom: 0.4rem;
}

.contact-form-wrap {
  padding: 1.45rem;
  border-radius: 30px;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form span {
  color: #dce9fb;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 13, 24, 0.5);
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f94ad;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(31, 125, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(31, 125, 255, 0.12);
  background: rgba(8, 18, 32, 0.8);
}

.full-width {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: fit-content;
}

.form-feedback {
  min-height: 1.6rem;
  margin-bottom: 0;
  color: #cfe0f6;
}

.form-feedback.is-success {
  color: #95ffd6;
}

.form-feedback.is-error {
  color: #ffcab0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-weight: 700;
  font-size: 1.02rem;
}

.faq-icon {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.4rem;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  opacity: 1;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 10, 18, 0.72);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  align-items: start;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-logo {
  width: clamp(160px, 18vw, 220px);
}

.footer-copy {
  max-width: 40ch;
  margin-bottom: 0;
}

.site-footer h3 {
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #bdd0e7;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #a7bbd4;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #19c37d, #0fa666);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 166, 102, 0.35);
}

.floating-whatsapp svg {
  width: 1.2rem;
  fill: currentColor;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .solution-grid,
  .application-grid,
  .diferencial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .process-grid::before {
    display: none;
  }

  .cta-panel,
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 14ch;
  }

  .showcase-media {
    justify-self: start;
  }

  .product-group-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 80px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-logo {
    width: clamp(132px, 34vw, 180px);
  }

  .brand-text small {
    font-size: 0.66rem;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 33, 57, 0.1);
    box-shadow: 0 18px 40px rgba(7, 17, 31, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(31, 125, 255, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-highlights,
  .value-grid,
  .form-grid,
  .contact-cards,
  .trust-grid,
  .solution-grid,
  .application-grid,
  .diferencial-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-layout {
    grid-template-columns: 1fr;
  }

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

  .technical-board {
    min-height: 520px;
  }

  .board-center {
    width: calc(100% - 2rem);
  }

  .board-node {
    width: calc(50% - 1.35rem);
  }

  .spec-left,
  .spec-right {
    top: auto;
    bottom: 7.2rem;
  }

  .spec-left {
    left: 1rem;
  }

  .spec-right {
    right: 1rem;
  }

  .spec-bottom {
    width: calc(100% - 2rem);
    bottom: 1rem;
  }

  .showcase-content,
  .showcase-title {
    max-width: none;
  }

  .showcase-media {
    width: min(100%, 360px);
  }

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

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

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .brand {
    align-items: flex-start;
    gap: 0.55rem;
  }

  .brand-logo {
    width: min(148px, 42vw);
  }

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

  .hero-copy h1 {
    font-size: clamp(1.2rem, 5.5vw, 1.7rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  #aplicacoes .section-heading h2 {
    font-size: clamp(1rem, 4.3vw, 1.3rem);
    line-height: 1.22;
  }

  .button,
  .form-submit,
  .cta-actions .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .visual-frame,
  .about-panel,
  .contact-form-wrap,
  .cta-panel {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .technical-board {
    min-height: 580px;
  }

  .board-node {
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
  }

  .node-top-left {
    top: 1rem;
  }

  .node-top-right {
    top: 5.5rem;
  }

  .node-bottom-left {
    bottom: 11.8rem;
  }

  .node-bottom-right {
    bottom: 7.2rem;
  }

  .node-top-left::before,
  .node-top-right::before,
  .node-bottom-left::before,
  .node-bottom-right::before {
    display: none;
  }

  .board-center {
    top: 52%;
  }

  .showcase-tags {
    gap: 0.6rem;
  }

  .showcase-specialties,
  .product-grid,
  .product-grid-compact {
    grid-template-columns: 1fr;
  }

  .showcase-tags span,
  .showcase-cta {
    width: 100%;
    justify-content: center;
  }

  .product-group {
    padding: 1.2rem;
  }

  .product-card h4 {
    font-size: 0.98rem;
  }

  .spec-left,
  .spec-right {
    position: static;
    margin: 0 1rem 0.85rem;
  }

  .spec-bottom {
    position: static;
    transform: none;
    margin: 0 1rem 1rem;
    width: auto;
  }

  .visual-footer,
  .panel-head {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .showcase-image-shell {
    animation: none;
  }
}