@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist";
  --prisma-blue: #002d5f;
  --prisma-blue-deep: #001f43;
  --prisma-blue-soft: #0a427e;
  --prisma-green: #97ae1a;
  --prisma-green-dark: #788b14;
  --prisma-green-pale: #eef3d2;
  --ink: #132238;
  --muted: #607086;
  --line: #dfe5ea;
  --surface: #f5f7f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 45, 95, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans, "Geist"), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  border-radius: 8px;
  background: var(--prisma-blue);
  color: var(--white);
  padding: 12px 18px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  background: var(--prisma-blue-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
  letter-spacing: 0.02em;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-contact span {
  color: rgba(255, 255, 255, 0.52);
}

.topbar-contact a {
  color: var(--white);
  font-weight: 650;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 45, 95, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: 184px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 170px;
  display: flex;
  align-items: center;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #354960;
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav > a,
.nav-dropdown > a {
  position: relative;
  padding-block: 42px;
  transition: color 0.2s ease;
}

.desktop-nav > a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 31px;
  height: 2px;
  background: var(--prisma-green);
  transition: right 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.desktop-nav > a.active,
.nav-dropdown > a:hover,
.nav-dropdown > a:focus-visible,
.nav-dropdown.active > a {
  color: var(--prisma-blue);
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a.active::after,
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after,
.nav-dropdown.active > a::after {
  right: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 20px);
  left: 50%;
  z-index: 20;
  width: 220px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 31, 67, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  color: #354960;
  font-size: 0.82rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--surface);
  color: var(--prisma-blue);
}

.header-cta {
  border: 1px solid var(--prisma-blue);
  color: var(--prisma-blue);
  padding: 12px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--prisma-blue);
  color: var(--white);
}

.mobile-nav {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-nav summary {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  width: 20px;
  height: 2px;
  background: var(--prisma-blue);
}

.mobile-nav nav {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(280px, calc(100vw - 32px));
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.mobile-nav nav a {
  display: block;
  padding: 12px 14px;
  color: var(--prisma-blue);
  font-weight: 650;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 45, 95, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 45, 95, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8faf7 66%, #f0f4dc 100%);
  background-size:
    46px 46px,
    46px 46px,
    auto;
}

.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  left: -320px;
  top: 100px;
  border: 85px solid rgba(151, 174, 26, 0.09);
}

.hero-grid {
  min-height: 685px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 88px 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--prisma-blue-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--prisma-green);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--prisma-blue-deep);
  font-size: clamp(3.1rem, 5vw, 5.25rem);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 strong {
  color: var(--prisma-green-dark);
  font-weight: 650;
}

.hero-description {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  font-size: 0.88rem;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button svg,
.text-link svg,
.app-content a svg,
.article-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background: var(--prisma-blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 45, 95, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--prisma-blue-deep);
}

.button-dark {
  margin-top: 28px;
  background: var(--prisma-blue-deep);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--prisma-green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--prisma-blue);
  font-size: 0.9rem;
  font-weight: 750;
}

.text-link svg,
.app-content a svg,
.article-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg,
.text-link:focus-visible svg,
.app-content a:hover svg,
.app-content a:focus-visible svg,
.article-link:hover svg,
.article-link:focus-visible svg {
  transform: translateX(4px);
}

.hero-proof {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-proof div {
  display: grid;
  gap: 4px;
  padding-right: 28px;
}

.hero-proof div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  color: var(--prisma-blue);
  font-size: 1.1rem;
}

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

.hero-visual {
  position: relative;
  height: 570px;
  align-self: end;
}

.hero-photo {
  position: absolute;
  z-index: 2;
  width: 610px;
  max-width: 112%;
  right: -36px;
  bottom: 0;
}

.hero-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  right: 45px;
  bottom: 25px;
  background: linear-gradient(145deg, var(--prisma-green) 0%, #c3d56e 100%);
  box-shadow: 0 28px 80px rgba(68, 91, 0, 0.16);
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 24px 22px rgba(0, 31, 67, 0.13));
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(0, 45, 95, 0.14);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 515px;
  height: 515px;
  right: -10px;
  bottom: 8px;
}

.hero-orbit-two {
  width: 590px;
  height: 590px;
  right: -48px;
  bottom: -30px;
  border-color: rgba(151, 174, 26, 0.18);
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  left: -18px;
  bottom: 78px;
  width: 265px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.status-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--prisma-green);
  box-shadow: 0 0 0 5px var(--prisma-green-pale);
}

.hero-floating-card div {
  display: grid;
  gap: 6px;
}

.hero-floating-card strong {
  color: var(--prisma-blue);
  font-size: 0.88rem;
}

.hero-floating-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-side-label {
  position: absolute;
  right: -94px;
  top: 190px;
  margin: 0;
  color: rgba(0, 45, 95, 0.48);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.highlight-strip {
  position: relative;
  z-index: 4;
  background: var(--prisma-blue);
  color: var(--white);
}

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

.highlight-grid article {
  min-height: 152px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 36px;
}

.highlight-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.highlight-grid article > span {
  color: var(--prisma-green);
  font-size: 0.78rem;
  font-weight: 800;
}

.highlight-grid h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.highlight-grid p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.55;
}

.section-space {
  padding-block: 112px;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 96px;
}

.system-image-wrap {
  position: relative;
}

.system-image {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.system-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 31, 67, 0.32));
}

.system-image img {
  width: 100%;
  aspect-ratio: 1.33;
  object-fit: cover;
}

.experience-stamp {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 180px;
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: var(--prisma-green);
  color: var(--prisma-blue-deep);
}

.experience-stamp strong {
  font-size: 1.05rem;
}

.experience-stamp span {
  font-size: 0.76rem;
  line-height: 1.5;
}

.section-copy h2,
.section-heading h2,
.services-intro h2,
.contact-card h2 {
  margin: 0;
  color: var(--prisma-blue-deep);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-lead {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #33485f;
  font-size: 0.9rem;
}

.feature-list svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  padding: 4px;
  border-radius: 50%;
  background: var(--prisma-green-pale);
  fill: none;
  stroke: var(--prisma-green-dark);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apps-section {
  overflow: hidden;
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.7;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.app-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5eaee;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.app-image {
  overflow: hidden;
  background: #eef4f8;
}

.app-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.app-image-tele img {
  object-position: center 36%;
}

.app-card:hover .app-image img {
  transform: scale(1.025);
}

.app-content {
  padding: 34px 36px 38px;
}

.card-label {
  margin: 0 0 12px;
  color: var(--prisma-green-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-content h3 {
  margin: 0;
  color: var(--prisma-blue);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.app-content > p:not(.card-label) {
  min-height: 76px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.app-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--prisma-blue);
  font-size: 0.84rem;
  font-weight: 750;
}

.services-section {
  background: var(--prisma-blue-deep);
  color: var(--white);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}

.services-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.services-intro .section-kicker {
  color: var(--prisma-green);
}

.services-intro h2 {
  color: var(--white);
}

.services-intro > p:not(.section-kicker) {
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.services-intro .text-link {
  color: var(--white);
}

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.services-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.services-list article > span {
  color: var(--prisma-green);
  font-size: 0.75rem;
  font-weight: 800;
}

.services-list h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.services-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
  line-height: 1.65;
}

.articles-heading {
  grid-template-columns: 1fr auto;
}

.articles-heading .text-link {
  margin-bottom: 8px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  border-bottom: 1px solid var(--line);
}

.article-image {
  display: block;
  overflow: hidden;
  background: var(--surface);
}

.article-image img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.035);
}

.article-content {
  padding: 24px 4px 30px;
}

.article-content time {
  color: var(--prisma-green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.article-content h3 {
  margin: 12px 0 13px;
  color: var(--prisma-blue-deep);
  font-size: 1.18rem;
  line-height: 1.4;
  letter-spacing: -0.018em;
}

.article-content h3 a:hover,
.article-content h3 a:focus-visible {
  color: var(--prisma-blue-soft);
}

.article-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.article-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--prisma-blue);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-section {
  padding: 0 0 112px;
}

.contact-card {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: center;
  gap: 70px;
  padding: 62px 72px;
  border: 1px solid #e2e2e2;
  background: #f0f0f0;
}

.contact-card .section-kicker {
  color: var(--prisma-blue);
}

.contact-card h2 {
  max-width: 720px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.contact-card > div:first-child > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(0, 31, 67, 0.75);
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 17px;
}

.button-light {
  background: var(--white);
  color: var(--prisma-blue);
  box-shadow: 0 12px 35px rgba(0, 31, 67, 0.12);
}

.contact-actions > a:last-child {
  color: var(--prisma-blue-deep);
  font-weight: 750;
}

.site-footer {
  background: #f3f5f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 0.85fr;
  gap: 70px;
  padding-block: 72px 54px;
}

.footer-brand img {
  width: 174px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--prisma-blue);
  font-size: 0.84rem;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-grid > div:not(.footer-brand) > p {
  display: block;
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--prisma-blue);
}

.social-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-preview span {
  border: 1px solid #ced6dc;
  padding: 8px 10px;
  color: var(--prisma-blue);
  font-size: 0.68rem;
  font-weight: 700;
}

.social-preview a {
  border: 1px solid #ced6dc;
  padding: 8px 10px;
  color: var(--prisma-blue);
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-bottom {
  min-height: 72px;
  border-top: 1px solid #dce2e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #758393;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.19);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 30px;
  color: #788596;
  font-size: 0.76rem;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--prisma-blue);
}

.breadcrumbs span {
  color: #a8b1ba;
}

.inner-hero,
.page-title {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 45, 95, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 45, 95, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f7f9f8 100%);
  background-size:
    46px 46px,
    46px 46px,
    auto;
}

.inner-hero::before,
.page-title::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -230px;
  bottom: -250px;
  border: 70px solid rgba(151, 174, 26, 0.08);
  border-radius: 50%;
}

.inner-hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 86px;
  padding-block: 76px;
}

.inner-hero-copy {
  position: relative;
  z-index: 2;
}

.inner-hero-copy h1,
.page-title h1 {
  max-width: 770px;
  margin: 0;
  color: var(--prisma-blue-deep);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.inner-hero-copy > p:last-of-type,
.page-title-inner > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.inner-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.inner-hero-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.inner-hero-image img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.content-section {
  padding-block: 104px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: start;
  gap: 86px;
}

.prose-card h2,
.feature-panel h2,
.detail-band h2,
.inner-contact-card h2,
.service-page-copy h2,
.contact-method h2 {
  margin: 0;
  color: var(--prisma-blue-deep);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.prose-card > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-panel {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.feature-panel h2 {
  font-size: 1.65rem;
}

.feature-panel .feature-list {
  margin-top: 26px;
}

.detail-band {
  background: var(--prisma-blue-deep);
  color: var(--white);
}

.detail-band-inner {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 100px;
  padding-block: 70px;
}

.detail-band .section-kicker {
  color: var(--prisma-green);
}

.detail-band h2 {
  color: var(--white);
}

.detail-band-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.8;
}

.inner-contact-section {
  padding-block: 84px;
}

.inner-contact-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 54px;
  padding: 48px 58px;
  border: 1px solid #e2e2e2;
  background: #f0f0f0;
}

.inner-contact-card .section-kicker {
  margin-bottom: 12px;
}

.inner-contact-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.page-title-inner {
  position: relative;
  z-index: 2;
  padding-block: 100px 110px;
}

.page-title-compact .page-title-inner {
  padding-block: 86px 96px;
}

.page-title h1 {
  max-width: 900px;
}

.page-title-inner > p:last-child {
  max-width: 720px;
}

.service-page-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-page-list article {
  display: grid;
  grid-template-columns: 85px 0.85fr 1.15fr;
  align-items: start;
  gap: 42px;
  padding-block: 46px;
  border-bottom: 1px solid var(--line);
}

.service-page-number {
  color: var(--prisma-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-page-copy h2 {
  font-size: 1.8rem;
}

.service-page-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-page-list .feature-list {
  margin: 0;
}

.article-list-section .article-content h2 {
  margin: 12px 0 13px;
  color: var(--prisma-blue-deep);
  font-size: 1.18rem;
  line-height: 1.4;
  letter-spacing: -0.018em;
}

.article-list-section .article-content h2 a:hover,
.article-list-section .article-content h2 a:focus-visible {
  color: var(--prisma-blue-soft);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.contact-method {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-method-primary {
  background: var(--surface);
}

.contact-method h2 {
  font-size: 1.8rem;
}

.contact-method > p:not(.section-kicker) {
  margin: 18px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-method .button,
.contact-method .text-link {
  margin-top: auto;
}

.article-list-section .articles-grid {
  align-items: stretch;
}

.article-list-section .article-card {
  display: flex;
  flex-direction: column;
}

.article-list-section .article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-list-section .article-link {
  margin-top: auto;
  padding-top: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 54px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--prisma-blue);
  font-size: 0.8rem;
  font-weight: 750;
}

.pagination span,
.pagination a:hover,
.pagination a:focus-visible {
  border-color: var(--prisma-blue);
  background: var(--prisma-blue);
  color: var(--white);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 72px;
}

.news-article {
  min-width: 0;
}

.news-article-header {
  margin-bottom: 38px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.news-article-header h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  color: var(--prisma-blue-deep);
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  font-weight: 620;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.news-article-header time {
  color: var(--prisma-green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-article-summary {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.conteudo-responsivo {
  color: #33485f;
  font-size: 1rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.conteudo-responsivo p {
  margin: 0 0 1.45rem;
}

.conteudo-responsivo h2,
.conteudo-responsivo h3,
.conteudo-responsivo h4 {
  margin: 2.4rem 0 1rem;
  color: var(--prisma-blue-deep);
  line-height: 1.25;
}

.conteudo-responsivo a {
  color: var(--prisma-blue-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.conteudo-responsivo img {
  max-width: 100%;
  height: auto;
}

.conteudo-responsivo ul,
.conteudo-responsivo ol {
  margin: 0 0 1.45rem;
  padding-left: 1.5rem;
}

.conteudo-responsivo blockquote {
  margin: 2rem 0;
  padding: 18px 24px;
  border-left: 4px solid var(--prisma-green);
  background: var(--surface);
}

.conteudo-responsivo table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.conteudo-responsivo .text-center {
  text-align: center;
}

.conteudo-responsivo .conteudo-imagem {
  margin: 2rem 0;
  text-align: center;
}

.conteudo-responsivo .imagem-direita {
  float: right;
  margin: 0 0 18px 24px;
}

.conteudo-responsivo .imagem-esquerda {
  float: left;
  margin: 0 24px 18px 0;
}

.news-sidebar {
  position: sticky;
  top: 142px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.news-sidebar h2 {
  margin: 0 0 22px;
  color: var(--prisma-blue-deep);
  font-size: 1.25rem;
}

.news-sidebar article + article {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.news-sidebar time {
  color: var(--prisma-green-dark);
  font-size: 0.66rem;
  font-weight: 800;
}

.news-sidebar h3 {
  margin: 7px 0 0;
  color: var(--prisma-blue);
  font-size: 0.9rem;
  line-height: 1.45;
}

.empty-state,
.not-found {
  padding: 58px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.empty-state h2,
.not-found h1 {
  margin: 0 0 12px;
  color: var(--prisma-blue-deep);
}

.empty-state p,
.not-found p {
  margin: 0 0 24px;
  color: var(--muted);
}

.map-card {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
}

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

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

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 176px 1fr auto;
  }

  .desktop-nav {
    gap: 18px;
    font-size: 0.82rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    min-height: 640px;
    gap: 28px;
  }

  .hero-photo {
    width: 530px;
    right: -70px;
  }

  .hero-floating-card {
    left: -10px;
  }

  .system-grid {
    gap: 68px;
  }

  .services-layout {
    gap: 70px;
  }

  .inner-hero-grid,
  .content-grid {
    gap: 58px;
  }

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

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

  .news-sidebar {
    position: static;
  }

  .contact-method:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .topbar p,
  .topbar-contact span {
    display: none;
  }

  .topbar-inner {
    justify-content: flex-end;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 72px 0 20px;
  }

  .hero-visual {
    width: min(620px, 100%);
    height: 500px;
    margin: 0 auto;
  }

  .hero-photo {
    width: 600px;
    right: -20px;
  }

  .hero-side-label {
    display: none;
  }

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

  .highlight-grid article {
    min-height: auto;
    padding: 26px 18px;
  }

  .highlight-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .system-grid,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .system-grid {
    gap: 70px;
  }

  .services-intro {
    position: static;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .article-card:last-child {
    grid-column: 1 / -1;
  }

  .article-card:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .article-card:last-child .article-image img {
    height: 100%;
    min-height: 270px;
  }

  .article-card:last-child .article-content {
    padding: 32px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .inner-hero-grid,
  .content-grid,
  .detail-band-inner {
    grid-template-columns: 1fr;
  }

  .inner-hero-grid {
    gap: 48px;
  }

  .inner-hero-image {
    width: min(680px, 100%);
  }

  .detail-band-inner {
    gap: 28px;
  }

  .service-page-list article {
    grid-template-columns: 55px 1fr;
  }

  .service-page-list .feature-list {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-container {
    width: min(100% - 32px, 1180px);
  }

  .topbar-contact {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .header-inner {
    min-height: 86px;
  }

  .brand {
    width: 126px;
  }

  .brand img {
    width: 126px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-proof {
    align-items: flex-start;
    gap: 18px;
  }

  .hero-proof div {
    padding-right: 0;
  }

  .hero-proof div + div {
    padding-left: 18px;
  }

  .hero-visual {
    height: 380px;
  }

  .hero-photo {
    width: 470px;
    max-width: 120%;
    right: -64px;
  }

  .hero-photo::after {
    width: 320px;
    height: 320px;
    right: 54px;
  }

  .hero-orbit-one {
    width: 370px;
    height: 370px;
    right: -28px;
  }

  .hero-orbit-two {
    width: 430px;
    height: 430px;
    right: -60px;
  }

  .hero-floating-card {
    left: 0;
    bottom: 26px;
    width: 235px;
    padding: 15px;
  }

  .section-space {
    padding-block: 78px;
  }

  .experience-stamp {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    margin-top: 0;
  }

  .section-copy h2,
  .section-heading h2,
  .services-intro h2,
  .contact-card h2 {
    font-size: 2.3rem;
  }

  .apps-grid,
  .articles-grid,
  .article-card:last-child {
    grid-template-columns: 1fr;
  }

  .article-card:last-child {
    display: block;
  }

  .app-image img,
  .article-image img,
  .article-card:last-child .article-image img {
    height: 220px;
    min-height: auto;
  }

  .app-content {
    padding: 28px 24px 30px;
  }

  .app-content > p:not(.card-label) {
    min-height: auto;
  }

  .services-list article {
    grid-template-columns: 46px 1fr;
  }

  .articles-heading {
    margin-bottom: 40px;
  }

  .contact-section {
    padding-bottom: 78px;
  }

  .contact-card {
    width: 100%;
    padding: 52px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 58px 42px;
  }

  .footer-bottom {
    min-height: 92px;
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .inner-hero-grid {
    min-height: auto;
    padding-block: 58px 70px;
  }

  .inner-hero-copy h1,
  .page-title h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .inner-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .inner-hero-image {
    border-width: 6px;
  }

  .content-section {
    padding-block: 76px;
  }

  .feature-panel {
    padding: 30px 24px;
  }

  .detail-band-inner {
    min-height: auto;
    padding-block: 64px;
  }

  .inner-contact-section {
    padding-block: 62px;
  }

  .inner-contact-card {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 44px 24px;
  }

  .page-title-inner,
  .page-title-compact .page-title-inner {
    padding-block: 64px 72px;
  }

  .service-page-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-page-list .feature-list {
    grid-column: 1;
  }

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

  .contact-method,
  .contact-method:last-child {
    min-height: 300px;
    grid-column: auto;
    padding: 32px 24px;
  }

  .conteudo-responsivo .imagem-direita,
  .conteudo-responsivo .imagem-esquerda {
    float: none;
    display: block;
    margin: 1.5rem auto;
  }

  .news-article-header h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .news-sidebar,
  .empty-state,
  .not-found {
    padding: 28px 22px;
  }
}
