/* ==============================================================
   Virtuatech® — Home rebuild (clean code, no Elementor bloat)
   Cor da marca: #421FAA
   ============================================================== */

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  /* Brand */
  --brand: #421FAA;
  --brand-2: #5B2EE6;
  --brand-3: #7A4FFF;
  --brand-4: #B9A6FF;
  --brand-50: #F4F2F8;        /* hover/destaque sutil — cinza levemente lilás */
  --brand-bg: #2A1466;        /* roxo profundo do footer original */

  /* Neutrals */
  --bg: #F7F7F7;
  --bg-soft: #F7F7F7;         /* cinza claro neutro (sem roxo) */
  --bg-soft-2: #F7F7F7;       /* cinza muito claro — bg seção soluções original */
  --text: #15102B;
  --text-soft: #524A6B;
  --text-mute: #8B82A4;
  --border: #ECECEF;

  /* System */
  --container: 1240px;
  --header-h: 84px;
  --radius: 4px;
  --radius-lg: 6px;
  --shadow-sm: 0 4px 16px rgba(66, 31, 170, .06);
  --shadow-md: 0 18px 44px rgba(66, 31, 170, .12);
  --shadow-lg: 0 28px 72px rgba(66, 31, 170, .22);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ==============================================================
   PRELOADER — overlay branco com a logo pulsando + anel girando
   ============================================================== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader__inner {
  position: relative;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(66, 31, 170, .12);
  border-top-color: var(--brand);
  animation: loaderSpin 1s linear infinite;
  will-change: transform;
}
.site-loader__logo {
  width: 40px;
  height: auto;
  display: block;
  animation: loaderPulse 1.8s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.08); opacity: 1; }
}
/* Trava o scroll da página enquanto o loader está visível */
body.is-loading {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .site-loader__ring { animation: none; border-top-color: rgba(66, 31, 170, .12); }
  .site-loader__logo { animation: none; }
}

/* Configurações base para Lenis */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #F7F7F7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.brand-accent { color: var(--brand); }

.grad {
  background: linear-gradient(135deg, #FFFFFF 0%, #B9A6FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p, .section-head__sub { font-size: 1.05rem; color: var(--text-soft); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==============================================================
   INTERNAL PAGE STANDARD
   ============================================================== */
body { overflow-x: hidden; }

.page-banner {
  position: relative;
  height: 440px;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-bg);
}

.page-banner__bg {
  position: absolute;
  inset: -25% 0;
  will-change: transform;
}

.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 5, 60, .72) 0%, rgba(20, 5, 60, .35) 100%);
}

.page-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.page-banner__title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  margin: 0 0 18px;
}

.page-banner__breadcrumb {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-banner__breadcrumb a {
  color: rgba(255, 255, 255, .86);
  transition: color .25s var(--ease);
}

.page-banner__breadcrumb a:hover { color: #fff; }
.page-banner__breadcrumb span { color: rgba(255, 255, 255, .48); }

.page-banner--article {
  height: 440px;
  min-height: 360px;
  background: #18131f;
}

.page-banner--article .page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-banner--article .page-banner__title {
  max-width: 920px;
  font-size: clamp(2.2rem, 4.7vw, 3.8rem);
  line-height: 1.08;
}

.page-banner--article .page-banner__overlay {
  background: linear-gradient(90deg, rgba(8, 6, 14, .58) 0%, rgba(8, 6, 14, .22) 100%);
}

.internal-page-section {
  padding: 92px 0;
  background: var(--bg);
}

.internal-page-section__content {
  max-width: 860px;
  text-align: center;
}

.internal-page-section__eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.internal-page-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.internal-page-section p {
  font-size: 1.04rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================================================
   CONTACT PAGE
   ============================================================== */
.contact-hero-block {
  position: relative;
  padding: 96px 0 70px;
  background: var(--bg);
  overflow: hidden;
}

.contact-hero-block::before,
.contact-form-section::before,
.contact-team-section::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -80px;
  width: 360px;
  height: 360px;
  background: url("./assets/footer-tecnologia-industrial-virtuatech.png") center/contain no-repeat;
  opacity: .025;
  pointer-events: none;
}

.contact-hero-block__grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 72px;
}

.contact-office-card {
  position: relative;
  padding: 46px;
  border: 1px solid rgba(76, 76, 76, .35);
  border-radius: 8px 0 8px 8px;
  background: #1E1F23;
  color: #fff;
  overflow: hidden;
}

.contact-office-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -50px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .08);
  transform: rotate(45deg);
}

.contact-office-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 54px;
  height: 54px;
  color: var(--brand);
  margin-bottom: 28px;
}

.contact-office-card h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 14px;
}

.contact-office-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .72);
  line-height: 1.72;
  margin: 0 0 24px;
}

.contact-office-card__button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 2px;
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.contact-office-card__button:hover {
  color: #fff;
  border-color: var(--brand);
  background: rgba(66, 31, 170, .22);
}

.contact-office-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
}

.contact-office-card__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, .88);
  line-height: 1.5;
}

.contact-office-card__list svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  margin-top: 2px;
}

.contact-office-card__list a {
  color: inherit;
  overflow-wrap: anywhere;
}

.contact-office-card__list a:hover {
  color: #fff;
}

.contact-copy span,
.contact-form-shell__head p {
  display: inline-block;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: .98;
  letter-spacing: 0;
  margin: 0 0 24px;
}

.contact-copy p {
  max-width: 600px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.contact-form-section {
  position: relative;
  padding: 60px 0 0;
  background: var(--bg);
}

.contact-form-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 68px 78px 72px;
  border-top: 4px solid var(--brand);
  border-radius: 8px;
  background: #F7F7F7;
  box-shadow: 0 0 0 5px #fff, 0 22px 60px rgba(15, 10, 35, .08);
}

.contact-form-shell__head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-form-shell__head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
}

.contact-form-shell__head p {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--text-soft);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #D2D2D2;
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  font: inherit;
  min-height: 52px;
  padding: 12px 18px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(66, 31, 170, .12);
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: center;
  grid-column: 1 / -1;
  min-width: 170px;
  min-height: 52px;
  border: 0;
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-form button:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: none;
}

.contact-map-section {
  padding-top: 0;
  background: var(--bg);
}

.contact-map-section iframe {
  display: block;
  width: 100%;
  height: min(720px, 64vw);
  min-height: 420px;
  border: 0;
  filter: saturate(.86);
}

.contact-team-section {
  position: relative;
  padding: 104px 0 120px;
  background: var(--bg);
  overflow: hidden;
}

.contact-team-section h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 1.02;
  margin: 0 0 54px;
}

.contact-team-section h2 span {
  color: var(--brand);
}

.contact-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1020px;
  margin: 0 auto;
}

.contact-team-card {
  display: grid;
  gap: 18px;
  min-height: 260px;
  padding: 34px;
  border: 1px solid #E9E9E9;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(66, 31, 170, .35);
  box-shadow: 0 18px 40px rgba(30, 20, 64, .08);
}

.contact-team-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 4px;
  background: #F7F7F7;
  color: var(--brand);
}

.contact-team-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-team-card strong {
  font-size: 1.35rem;
}

.contact-team-card span:not(.contact-team-card__icon) {
  color: var(--text-soft);
  line-height: 1.65;
}

.contact-team-card em {
  align-self: end;
  color: var(--brand);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 980px) {
  .contact-hero-block {
    padding: 76px 0 54px;
  }

  .contact-hero-block__grid,
  .contact-team-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-copy {
    order: -1;
  }

  .contact-form-shell {
    padding: 52px 34px 58px;
  }

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

  .contact-map-section iframe {
    height: 500px;
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .contact-office-card {
    padding: 34px 24px;
  }

  .contact-copy h2,
  .contact-team-section h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .contact-form-shell {
    padding: 42px 20px 48px;
  }

  .contact-form-shell__head {
    margin-bottom: 26px;
  }

  .contact-map-section iframe {
    height: 420px;
    min-height: 360px;
  }

  .contact-team-section {
    padding: 74px 0 84px;
  }

  .contact-team-card {
    padding: 26px;
    min-height: 230px;
  }
}

.contact-hero-block {
  padding: clamp(70px, 7vw, 98px) 0 120px;
  overflow: visible;
}

.contact-hero-block__wrap {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
}

.contact-office-image {
  position: absolute;
  top: 0;
  right: 20px;
  width: 72%;
  height: 590px;
  border-radius: 8px;
  overflow: hidden;
  background: #ececef;
}

.contact-office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.contact-office-card {
  width: 50%;
  min-width: 560px;
  min-height: 590px;
  margin-top: 34px;
  margin-left: 0;
  margin-bottom: -104px;
  padding: clamp(44px, 4.2vw, 64px) clamp(46px, 4.5vw, 70px);
  border-color: #4C4C4C;
  border-radius: 8px;
  background-color: #1E1F23;
  background-image: url("./assets/contact_detail_pattern_bg.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
  box-shadow: 0 22px 44px rgba(10, 8, 18, .08);
}

.contact-office-card::after {
  display: none;
}

.contact-office-card__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 36px;
}

.contact-office-card h2 {
  font-size: clamp(2.25rem, 3.45vw, 3.35rem);
  line-height: 1.1;
  margin-bottom: 34px;
  letter-spacing: 0;
}

.contact-office-card__button {
  min-height: 60px;
  margin-bottom: 34px;
  border-width: 2px;
  border-color: #626262;
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  font-weight: 700;
  gap: 14px;
}

.contact-office-card__button:hover {
  color: var(--brand);
  background: transparent;
}

.contact-office-card__list {
  gap: 16px;
  padding-top: 0;
}

.contact-office-card__list li {
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: center;
  color: #fff;
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  font-weight: 700;
  line-height: 1.55;
}

.contact-office-card__list svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, .42);
}

.contact-office-social {
  position: absolute;
  right: 20px;
  top: 286px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.contact-office-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 2px;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 20px rgba(22, 18, 45, .08);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.contact-office-social a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateX(-3px);
}

.contact-form-section {
  z-index: 2;
  margin-top: 0;
  padding: 0 0 0;
}

.contact-form-shell {
  transform: translateY(86px);
  max-width: 930px;
  padding: 50px 64px 56px;
  border-radius: 8px;
}

.contact-form-shell__head h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.12;
}

.contact-form-shell__head p,
.contact-copy p {
  font-size: 1.05rem;
}

.contact-map-section {
  margin-top: 0;
  padding-top: 0;
}

.contact-map-section iframe {
  height: 660px;
  min-height: 520px;
}

.contact-team-section {
  padding: 78px 0 96px;
}

.contact-team-section h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.12;
  margin-bottom: 42px;
}

.contact-team-grid {
  max-width: 880px;
  gap: 24px;
}

.contact-team-card {
  min-height: 160px;
  padding: 24px 28px;
  border-color: #E3E3E7;
  border-radius: 6px;
  box-shadow: none;
  align-content: start;
}

.contact-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 31, 170, .25);
  box-shadow: 0 18px 45px rgba(22, 18, 45, .06);
}

.contact-team-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 3px;
  background: #F7F7F7;
  color: #666;
}

.contact-team-card--email .contact-team-card__icon {
  background: var(--brand);
  color: #fff;
}

.contact-team-card--linkedin .contact-team-card__icon {
  background: transparent;
  justify-content: flex-start;
}

.contact-team-card--linkedin .contact-team-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-team-card strong {
  font-size: clamp(1.18rem, 1.6vw, 1.35rem);
  line-height: 1.2;
}

.contact-team-card span:not(.contact-team-card__icon) {
  max-width: 360px;
  font-size: .96rem;
  line-height: 1.45;
}

.contact-team-card em {
  align-self: start;
  color: var(--brand);
  font-size: .98rem;
}

@media (max-width: 980px) {
  .contact-hero-block__wrap {
    min-height: auto;
    display: grid;
  }

  .contact-office-image {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 8px 8px 0 0;
  }

  .contact-office-card {
    width: calc(100% - 24px);
    min-width: 0;
    min-height: auto;
    margin: -70px 12px 0;
    padding: 38px 30px;
    order: 2;
  }

  .contact-office-social {
    right: 18px;
    top: 180px;
  }

  .contact-form-section {
    margin-top: 56px;
  }

  .contact-form-shell {
    transform: none;
  }

  .contact-map-section {
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .contact-hero-block {
    padding-top: 64px;
  }

  .contact-office-image {
    height: 300px;
  }

  .contact-office-card {
    width: calc(100% - 16px);
    margin: -54px 8px 0;
    padding: 32px 22px;
  }

  .contact-office-card h2 {
    margin-bottom: 24px;
  }

  .contact-office-card__button {
    min-height: 52px;
    margin-bottom: 26px;
  }

  .contact-office-card__list li {
    font-size: .95rem;
  }

  .contact-office-social {
    display: none;
  }

  .contact-form-shell {
    padding: 38px 20px 44px;
  }

  .contact-map-section iframe {
    min-height: 390px;
    height: 430px;
  }

  .contact-team-grid {
    gap: 22px;
  }

  .contact-team-card {
    min-height: 150px;
    padding: 24px;
  }

  .contact-team-card__icon {
    margin-bottom: 34px;
  }
}

/* ==============================================================
   AWARDS / CERTIFICATIONS PAGE
   ============================================================== */
.awards-intro {
  position: relative;
  padding: 120px 0 96px;
  background: var(--bg-soft);
  overflow: hidden;
}

.awards-intro::before,
.awards-content::before,
.awards-content::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .34;
  background:
    linear-gradient(45deg, transparent 0 42%, rgba(66, 31, 170, .045) 42% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 0 42%, rgba(66, 31, 170, .035) 42% 58%, transparent 58%);
}

.awards-intro::before {
  left: 0;
  bottom: -40px;
  width: 420px;
  height: 420px;
}

.awards-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 560px);
  gap: 96px;
  align-items: center;
}

.awards-intro__medal {
  width: min(100%, 380px);
  margin: 0 auto;
  filter: drop-shadow(0 24px 34px rgba(66, 31, 170, .16));
}

.awards-intro h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.awards-intro h2 span { color: var(--brand); }

.awards-intro p {
  color: var(--text);
  font-size: .98rem;
}

.awards-content {
  position: relative;
  padding: 70px 0 118px;
  background: var(--bg-soft);
  overflow: hidden;
}

.awards-content::before {
  right: -70px;
  top: 160px;
  width: 380px;
  height: 380px;
}

.awards-content::after {
  right: 7%;
  bottom: 190px;
  width: 460px;
  height: 460px;
}

.award-entry {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  gap: 110px;
  align-items: start;
  padding: 0 0 116px;
}

.award-entry:last-child { padding-bottom: 0; }

.award-entry--solo {
  grid-template-columns: minmax(0, 760px);
}

.award-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.award-title {
  margin: 0 0 32px;
  color: var(--text);
  font-size: clamp(2.1rem, 4vw, 3.05rem);
  line-height: 1.08;
}

.award-title span { color: var(--brand); }

.award-copy {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.award-copy p {
  color: var(--text);
  margin-bottom: 22px;
}

.award-copy ul {
  margin: 26px 0 0 28px;
  padding: 0;
  color: var(--text-soft);
  font-weight: 400;
}

.award-copy li { margin-bottom: 10px; }

.award-copy li:last-child { margin-bottom: 0; }

.award-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--text);
  font-weight: 700;
  transition: color .2s var(--ease);
}

.award-download:hover { color: var(--brand); }

.award-details {
  padding-top: 24px;
}

.award-details h3 {
  margin: 0 0 32px;
  color: var(--text);
  font-size: 1.45rem;
}

.award-detail {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.award-detail:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.award-detail__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(20, 16, 43, .06);
}

.award-detail__icon svg {
  width: 18px;
  height: 18px;
}

.award-detail small {
  display: block;
  color: var(--text-mute);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.award-detail strong {
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
}

.iso-block {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin-top: 34px;
}

.iso-badge {
  width: 190px;
  border-radius: 8px;
}

.iso-certificate {
  width: min(100%, 560px);
  margin-top: 42px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(20, 16, 43, .08);
}

.iso-certificate-frame {
  width: min(100%, 720px);
  height: min(82vh, 860px);
  min-height: 620px;
  display: block;
  margin-top: 42px;
  border: 1px solid rgba(20, 16, 43, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20, 16, 43, .08);
}

.iso-certificate-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 700;
}

.award-section-label {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.award-media {
  margin: 34px 0;
}

.award-video {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 22px 48px rgba(20, 16, 43, .08);
}

.award-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
}

.award-gallery--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 680px;
}

.award-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 16, 43, .08);
}

.award-gallery--single img {
  aspect-ratio: 7 / 5;
}

@media (max-width: 980px) {
  .awards-intro__grid,
  .award-entry,
  .award-entry--solo,
  .iso-block {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .awards-intro {
    padding: 84px 0 74px;
  }

  .awards-content {
    padding: 64px 0 86px;
  }

  .award-entry {
    padding-bottom: 82px;
  }

  .award-details {
    padding-top: 0;
  }

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

  .award-gallery--single {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .awards-intro__grid {
    gap: 36px;
  }

  .awards-intro__medal {
    width: min(86%, 300px);
  }

  .award-copy {
    font-size: .94rem;
  }

  .award-copy ul {
    margin-left: 20px;
  }

  .iso-badge {
    width: 150px;
  }

  .iso-certificate-frame {
    min-height: 520px;
  }

  .award-gallery {
    grid-template-columns: 1fr;
  }
}

/* ==============================================================
   HEADER
   ============================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition:
    box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.site-header__row {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .site-header__row {
  height: 64px; /* encurta no scroll */
}
/* Logo: sempre roxa, encolhe um pouco quando o header reduz no scroll */
.brand {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 0;
}
.brand__logo {
  height: 42px;
  width: auto;
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .brand__logo { height: 34px; }


.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a.is-active {
  color: var(--brand);
  background: var(--brand-50);
}
.caret {
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .2s;
}
.has-dropdown { position: relative; }
.has-dropdown:hover > a > .caret { transform: rotate(225deg); margin-top: 3px; }
.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 280px;
  z-index: 30;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 8px 0 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: .92rem;
  color: var(--text-soft);
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--brand-50); color: var(--brand); }
.dropdown--services,
.dropdown--products {
  min-width: 360px;
}
.dropdown__item {
  position: relative;
}
.dropdown__item--has-submenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 12px;
  height: 100%;
}
.dropdown__item--has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.submenu-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  flex: 0 0 auto;
}
.dropdown__submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 520px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.dropdown__item--has-submenu:hover > .dropdown__submenu,
.dropdown__item--has-submenu:focus-within > .dropdown__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* .nav-cta antigo (botão de Contato) removido — Contato agora é item de menu padrão */

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;        /* mobile: considera a barra de URL dinâmica */
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 40px) 0 80px;
  color: #fff;
  background: #0E0626;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
}
.hero__bg-img,
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Vídeo entra por cima da imagem com fade só quando estiver pronto */
.hero__bg-video {
  opacity: 0;
  transition: opacity .9s ease-out;
}
.hero__bg-video.is-ready {
  opacity: 1;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 6, 38, .70) 0%, rgba(14, 6, 38, .55) 50%, rgba(14, 6, 38, .80) 100%);
}
.hero__inner {
  position: relative;
  max-width: 1200px;
}
.hero__pill {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .92rem;
  font-weight: 400;
  padding: 10px 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .15);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Animações Slider Revolution-style (text reveal) ---------- */
/* Máscara: overflow hidden + cada filho começa abaixo e sobe */
.reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  position: relative;
}
.hero__title .reveal-mask,
.hero__lede.reveal-mask {
  display: block;
}
.reveal-mask > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: heroReveal 1.05s cubic-bezier(.215, .61, .355, 1) forwards;
}
/* Texto longo (título e lede) precisa quebrar conforme reduz a tela */
.hero__title .reveal-mask > span,
.hero__lede.reveal-mask > span {
  display: block;
}
@keyframes heroReveal {
  to { transform: translateY(0); opacity: 1; }
}

/* Sequência escalonada (mesma cadência do Slider Revolution original) */
.hero__pill                                  { animation-delay: 0s; }
.hero__pill > span                           { animation-delay: .15s; }
.hero__title .reveal-mask:nth-child(1) > span { animation-delay: .35s; }
.hero__title .reveal-mask:nth-child(2) > span { animation-delay: .50s; }
.hero__lede > span                           { animation-delay: .80s; }

/* CTA: fade-up tradicional (não cabe em máscara por causa do ícone) */
.hero__cta--reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 1s cubic-bezier(.215, .61, .355, 1) forwards;
  animation-delay: 1s;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Pill (container) também faz fade-in sutil — overflow corta o span de dentro */
.hero__pill.reveal-mask {
  opacity: 0;
  animation: pillFadeIn .6s ease-out forwards;
  animation-delay: .1s;
}
@keyframes pillFadeIn {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-mask > span,
  .hero__cta--reveal,
  .hero__pill.reveal-mask {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 5vw, 4rem);  /* mobile: ~22px (cabe "AMPLIE...FUTURO" em 1 linha) → desktop até 64px */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 28px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.hero__lede {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(.82rem, 1.2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .95);
  max-width: 620px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: var(--brand);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s, gap .2s;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .25);
}
.hero__cta:hover {
  transform: translateY(-3px);
  background: var(--brand);
  color: #fff;
  gap: 14px;
  box-shadow: none;
}
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollHint 1.8s infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ==============================================================
   SOLUTIONS (4 cards) — texto centralizado + óculos VR vindo do canto
   ============================================================== */
.solutions {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: #F7F7F7;
  overflow: hidden;
  isolation: isolate;
}
/* Background pattern price-h3-bg1 (para fundos cinza) */
.solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('./assets/price-h3-bg1.jpg') center/cover no-repeat;
  opacity: .06;
  pointer-events: none;
}
/* Óculos VR — posicionado no terço esquerdo (igual ao original)
   com motion FX horizontal (speed 4, direction negative — desliza pra esquerda no scroll) */
.solutions__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.solutions__bg-img {
  position: absolute;
  top: -30px;             /* ← posição vertical (menor = mais pra cima) */
  left: -13%;             /* ← posição horizontal (negativo vai pra fora) */
  width: 30%;             /* ← tamanho do óculos */
  max-width: 500px;
  min-width: 320px;
  height: auto;
  will-change: transform;
  transition: transform .12s linear;
  filter: drop-shadow(0 40px 80px rgba(66, 31, 170, .18));
}
@media (max-width: 1100px) {
  .solutions__bg-img { width: 38%; left: -16%; top: 0; opacity: .35; }
}
@media (max-width: 720px) {
  .solutions__bg-img { display: none; }
}
.solutions .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.solution-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease);
  position: relative;
}
.solution-card:hover { transform: translateY(-4px); }
.solution-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ECECEF;
  border-radius: 6px 6px 0 0;
}
.solution-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.solution-card:hover .solution-card__media img { transform: scale(1.06); }
.solution-card__body {
  padding: 24px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0 0 6px 6px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.solution-card__num {
  display: none;
}
.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.solution-card h3 a {
  color: var(--text);
  transition: color .25s var(--ease);
}
/* Stretched link: o link do título vira a área clicável de TODO o body */
.solution-card h3 a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.solution-card p {
  font-size: .92rem;
  color: var(--text-soft);
  flex: 1;
  margin-bottom: 18px;
  transition: color .35s var(--ease);
}
/* Hover: body inteiro vira roxo, texto branco */
.solution-card:hover .solution-card__body {
  background: var(--brand);
}
.solution-card:hover .solution-card__body h3 a,
.solution-card:hover .solution-card__body p {
  color: #fff;
}

/* CTA "Ver mais" + setinha — aparecem APENAS no hover do card */
.solution-card__cta {
  position: relative;
  z-index: 2;                       /* fica acima do stretched link */
  align-self: flex-end;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  pointer-events: none;             /* clique vai pelo stretched link */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.solution-card__cta-label {
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
  letter-spacing: .02em;
  white-space: nowrap;
}
.ver-mais {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
/* Hover do card: aparecem juntos com fade + slide-up; círculo "preenche" */
.solution-card:hover .solution-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.solution-card:hover .ver-mais {
  background: #fff;
  color: var(--brand);
}

/* Indicadores (dots) do carrossel de soluções — visíveis apenas no mobile */
.solutions__dots {
  display: none;
}

/* ==============================================================
   CLIENTES (carousel) — bg branco + price_bg + mão grande do canto
   ============================================================== */
.clients {
  position: relative;
  z-index: 5;          /* fica acima da próxima seção (Projetos) */
  padding: clamp(70px, 8vw, 100px) 0;
  background: var(--bg);
  overflow: visible;   /* permite a mão vazar pra fora */
  isolation: isolate;
}
.clients::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('./assets/price_bg.jpg') center/cover no-repeat;
  opacity: .05;
  pointer-events: none;
}
.clients .container { overflow: hidden; position: relative; z-index: 1; }
.clients__layout {
  display: block;
  position: relative;
}
.clients__content { min-width: 0; }
/* Mão vindo do canto esquerdo — efeito parallax */
.clients__art {
  position: absolute;
  z-index: 1;        /* acima do background, abaixo dos logos */
  top: 78%;          /* ← posição vertical (50% = centro; >100% vaza pra próxima seção) */
  left: -6%;         /* ← posição horizontal da mão (negativo vai pra fora da tela) */
  transform: translate(0, -50%);
  width: 28%;        /* ← tamanho da mão */
  max-width: 460px;
  min-width: 280px;
  pointer-events: none;
  will-change: transform;
  transition: transform .15s linear;
}
/* Logos ficam acima da mão dentro da seção */
.clients__content { position: relative; z-index: 2; }
.clients .section-head { position: relative; z-index: 2; }
.clients__art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(66, 31, 170, .15));
}
.clients__content {
  max-width: 820px;        /* ← largura máxima dos logos (centralizada) */
  margin: 0 auto;
  text-align: center;
}
.clients .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1100px) {
  .clients__art { opacity: .2; min-width: 0; width: 45%; left: -18%; }
}
@media (max-width: 720px) {
  .clients__art { display: none; }
}
.clients__row {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 36px;          /* ← espaço entre as duas fileiras */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.clients__row:last-child { margin-bottom: 0; }
.clients__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll-left 38s linear infinite;
  will-change: transform;
}
.clients__track[data-direction="right"] { animation: scroll-right 42s linear infinite; }
.clients__row:hover .clients__track { animation-play-state: paused; }
.clients__track img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .3s, opacity .3s, transform .3s;
}
.clients__track img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ==============================================================
   PROJECTS (TABS) — bg cinza + price-h3-bg1 + esteira industrial
   ============================================================== */
.projects {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: #F7F7F7;
  overflow: hidden;
  isolation: isolate;
}
.projects::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('./assets/price-h3-bg1.jpg') center/cover no-repeat;
  opacity: .06;
  pointer-events: none;
}
.projects__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: .12;
}
.projects__bg-img {
  position: absolute;
  top: -147px;
  left: 77vw;
  width: 50%;
  max-width: 720px;
  height: auto;
  filter: grayscale(.3);
}
@media (max-width: 1100px) {
  .projects__bg { opacity: .08; }
  .projects__bg-img { left: 50%; top: 60%; width: 80%; }
}
.projects > .container { position: relative; z-index: 1; }
/* Tabs: layout 3 colunas (nav vertical | imagem | conteúdo) */
.tabs {
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: 40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  align-items: start;
}
.tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 0;
  overflow: visible;
  scrollbar-width: auto;
}
.tabs__nav::-webkit-scrollbar { display: revert; }
.tabs__btn {
  flex: none;
  width: 100%;
  min-width: 0;
  padding: 22px 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
  white-space: normal;
  line-height: 1.3;
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.tabs__btn svg {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.tabs__btn:hover:not(.is-active) {
  color: var(--brand);
  box-shadow: none;
  transform: translateY(-1px);
}
.tabs__btn.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: none;
}
.tabs__btn.is-active svg {
  opacity: 1;
  transform: translateX(0);
}

.tabs__panel {
  padding: 0;
  animation: fadeInTab .35s var(--ease);
}
.tabs__panel[hidden] { display: none; }
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tabs__panel-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
  align-items: start;
}
.tabs__panel-content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin-bottom: 14px;
  color: var(--text);
}
.tabs__panel-content > p { font-size: 1.02rem; margin-bottom: 28px; }
.tabs__panel-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  /* canto superior direito chanfrado (estilo "tech / engenharia") */
  clip-path: polygon(0 0, calc(100% - 64px) 0, 100% 64px, 100% 100%, 0 100%);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.features-list svg {
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}
.features-list a {
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
}
.features-list a:hover { color: var(--brand); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--text);
  color: #fff !important;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .2s, gap .2s;
}
.btn-link:hover { background: var(--brand); transform: translateY(-2px); gap: 14px; }

/* ==============================================================
   AWARDS / CERTIFICAÇÕES — bg branco + price_bg
   ============================================================== */
.awards {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.awards__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('./assets/price_bg.jpg') center/cover no-repeat;
  opacity: .05;
  pointer-events: none;
}
.awards__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.awards__content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.awards__media img { width: 100%; max-width: 480px; margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: none;
}
.btn--primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: none;
}
.btn--white {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
.btn--white:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,.25);
}

/* ==============================================================
   FOOTER — bg #28125C + imagem central decorativa (idêntico ao original)
   ============================================================== */
.footer {
  position: relative;
  background: #28125C;
  color: #C9BFEC;
  padding-top: 70px;
  overflow: hidden;
  isolation: isolate;
}
.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .14;
}
.footer__bg img {
  width: 537px;
  max-width: 90%;
  height: auto;
  user-select: none;
}
.footer .container { position: relative; z-index: 1; }
.footer__bottom { position: relative; z-index: 1; background: #13092A; }

.footer__top {
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 50px;
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  height: 90px;
  width: auto;
  max-width: 90%;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, .15));
}
@media (max-width: 720px) {
  .footer__logo img { height: 60px; }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  padding-top: 16px;
  align-items: start;
}
.footer__col--brand { padding-right: 12px; }
.footer__col h3 {
  color: #fff;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col p, .footer__col a { color: #C9BFEC; font-size: .94rem; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__links a { transition: color .2s; }
.footer__links a:hover { color: #fff; }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  align-items: center;
  justify-content: center;
  color: #C9BFEC;
  transition: background .2s, color .2s, transform .2s;
}
.footer__social a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  font-size: .85rem;
  color: #8B82A4;
}
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { margin: 0; }

/* ==============================================================
   WHATSAPP FAB
   ============================================================== */
.whatsapp-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .45);
  z-index: 70;
  transition: transform .25s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab .bi {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 28px;
  line-height: 1;
}
.whatsapp-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ringPulse 2s infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==============================================================
   RESPONSIVE
   ============================================================== */
@media (max-width: 1100px) {
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__layout { grid-template-columns: 1fr; gap: 40px; }
  .clients__art { max-width: 280px; margin: 0 auto; }
  /* Tabs: empilha tudo (nav vira linha rolável → imagem → conteúdo) */
  .tabs {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tabs__nav {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 4px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 92%, rgba(0,0,0,.3) 100%);
            mask-image: linear-gradient(90deg, #000 0%, #000 92%, rgba(0,0,0,.3) 100%);
  }
  .tabs__nav::-webkit-scrollbar { display: none; }
  .tabs__btn {
    flex: 0 0 auto;
    width: auto;
    padding: 16px 22px;
    font-size: .95rem;
  }
  /* Mobile/Tablet: nas abas brancas (inativas) a setinha some por completo */
  .tabs__btn:not(.is-active) svg { display: none; }
  .tabs__panel-grid { grid-template-columns: 1fr; gap: 32px; }
  .tabs__panel-media img {
    clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
  }
  .awards__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-header__row {
    position: relative;    /* ancora pro menu mobile (absolute) */
    justify-content: space-between;
  }
  .brand {
    position: static;
  }
  .primary-nav {
    position: absolute;
    top: 100%;                                  /* logo abaixo do header (acompanha mudança de altura) */
    left: -24px; right: -24px;                  /* compensa o padding do .container */
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s, visibility 0s .25s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .25s var(--ease), opacity .25s, visibility 0s 0s;
  }
  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
  }
  .primary-nav > ul > li { border-bottom: 1px solid var(--border); }
  .primary-nav > ul > li:last-child { border-bottom: 0; }
  .primary-nav > ul > li > a { padding: 14px 24px; border-radius: 0; }
  .has-dropdown:hover .dropdown { display: none; }
  .dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    background: var(--bg-soft);
    margin: 0;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .primary-nav.is-open .has-dropdown:hover .dropdown {
    display: block;
  }
  .dropdown li a { padding: 12px 36px; }
  .dropdown--services,
  .dropdown--products {
    min-width: 0;
  }
  .dropdown__item--has-submenu > a {
    justify-content: flex-start;
  }
  .submenu-caret {
    display: none;
  }
  .dropdown__submenu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: rgba(66, 31, 170, .05);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding: 0;
    margin: 0;
  }
  .dropdown__submenu li a {
    padding-left: 54px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + 16px) 0 32px;   /* espaçamento confortável entre header e pill */
  }
  .hero__inner { max-width: 100%; }
  .hero__pill {
    font-size: .76rem;        /* menor pra não quebrar em mobile */
    padding: 8px 18px;
    margin-bottom: 22px;
  }
  .hero__title {
    margin-bottom: 22px;
  }
  .hero__lede { margin-bottom: 28px; }
  .hero__scroll { display: none; }

  /* ===== Soluções: vira carrossel horizontal no mobile =====
     - peek do próximo card (~15%) + dots indicadores deixam claro
       que existe mais conteúdo para deslizar */
  .solutions__grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    /* extende até as bordas, mas mantém o primeiro card alinhado ao texto */
    margin: 0 -24px;
    padding: 4px 24px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* máscara suave na borda direita reforça que há mais à frente */
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 92%, rgba(0,0,0,.55) 100%);
            mask-image: linear-gradient(90deg, #000 0%, #000 92%, rgba(0,0,0,.55) 100%);
  }
  .solutions__grid::-webkit-scrollbar { display: none; }
  .solutions__grid > .solution-card {
    flex: 0 0 calc(85% - 16px);
    min-width: 0;
    scroll-snap-align: start;
  }
  /* hover de "subir" não combina com swipe — neutralizamos no mobile */
  .solution-card:hover { transform: none; }

  .solutions__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }
  .solutions__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--text-mute);
    opacity: .35;
    cursor: pointer;
    transition: opacity .25s var(--ease), transform .25s var(--ease), background .25s var(--ease), width .25s var(--ease);
  }
  .solutions__dot.is-active {
    opacity: 1;
    background: var(--brand);
    width: 22px;
  }

  /* Clientes: no mobile mostra apenas 1 carrossel (esconde a 2ª fileira) */
  .clients__row + .clients__row { display: none; }
  .clients__row { margin-bottom: 0; }

  .tabs__btn { padding: 14px 18px; font-size: .9rem; }
  .tabs__panel-media img {
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-row { flex-direction: column; align-items: center; text-align: center; }
}

/* mobile menor: header e logo encolhem um pouco */
@media (max-width: 480px) {
  :root { --header-h: 68px; }
  .brand__logo { height: 34px; }
  .site-header.is-scrolled .brand__logo { height: 28px; }
  .site-header.is-scrolled .site-header__row { height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; }
  .hero__bg::after { animation: none; }
  .whatsapp-fab__pulse { animation: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==============================================================
   INSTITUCIONAL PAGE — CONTENT SECTIONS
   ============================================================== */

.content-section {
  padding: 80px 0;
  background: var(--bg);
}

.content-section--alt {
  background: var(--bg-soft);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.content-text p {
  margin-bottom: 1.5rem;
}

.content-text p:last-child {
  margin-bottom: 0;
}

/* ==== TIMELINE ==== */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand), transparent);
  top: 0;
}

.timeline-item {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even) > * {
  direction: ltr;
}

.timeline-marker {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--bg);
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--brand);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.timeline-content {
  padding: 30px;
  background: var(--bg-soft);
  border-radius: 6px;
  border-left: 4px solid var(--brand);
}

.timeline-content h3 {
  color: var(--brand);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.timeline-content p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==== VISION SECTION ==== */
.vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
}

.vision-content .section-head h2 {
  color: white;
}

.vision-text {
  max-width: 700px;
  margin: 40px 0 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.vision-text p {
  margin-bottom: 1.5rem;
}

.vision-text a {
  margin-top: 30px;
  display: inline-block;
}

/* ==== PARTNERS SECTION ==== */
.partners-section {
  padding: 80px 0;
  background: var(--bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 20px;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: var(--bg);
}

.partner-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* ==== LOCATIONS SECTION ==== */
.locations-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.location-card {
  background: var(--bg);
  padding: 40px 30px;
  border-radius: 6px;
  border-left: 4px solid var(--brand);
  transition: all 0.3s var(--ease);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.location-card h3 {
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.location-city {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.location-contact {
  color: var(--brand);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ==== CTA SECTION ==== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn--primary {
  background: var(--brand);
  color: white;
}

.btn--primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn--large {
  padding: 16px 48px;
  font-size: 1.1rem;
}

/* ==== FOOTER ==== */
.site-footer {
  background: var(--brand-bg);
  color: white;
  padding: 60px 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .content-section {
    padding: 60px 0;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    margin-left: 80px;
    gap: 20px;
  }

  .timeline-item:nth-child(even) {
    direction: ltr;
  }

  .timeline-marker {
    position: absolute;
    left: -50px;
    width: 80px;
    height: 80px;
  }

  .vision-section {
    padding: 60px 0;
  }

  .vision-content .section-head h2 {
    font-size: 1.8rem;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

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

  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

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

@media (max-width: 480px) {
  .content-text {
    font-size: 1rem;
  }

  .timeline-item {
    margin-left: 60px;
  }

  .timeline-marker {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    left: -40px;
  }

  .timeline-content {
    padding: 20px;
  }

  .vision-text {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .btn--large {
    padding: 12px 36px;
    font-size: 1rem;
  }

  .footer-col h4 {
    font-size: 1rem;
  }

  .footer-col p {
    font-size: 0.9rem;
  }
}

/* ==============================================================
   Serviços e Produtos
   ============================================================== */
.service-product-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 104px) 0 clamp(58px, 7vw, 86px);
  background: var(--bg);
}

.service-product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("./assets/price-table-pattern-bg.jpg") top center / 100% auto repeat-x,
    url("./assets/price-h3-bg1.jpg") center top / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}

.service-product-section--products {
  padding-top: clamp(40px, 5vw, 72px);
  background: var(--bg);
}

.service-product-section > .container {
  position: relative;
  z-index: 1;
}

.service-product-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(34px, 4vw, 48px);
}

.service-product-head h2 {
  margin: 0 0 12px;
  color: #202124;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
}

.service-product-head p {
  margin: 0;
  color: #5f5b69;
  font-size: 1.05rem;
  line-height: 1.8;
}

.sp-tabs {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.sp-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.sp-tab {
  min-width: min(260px, 46vw);
  min-height: 58px;
  padding: 14px 28px;
  border: 1px solid #e7e3ef;
  border-radius: 4px;
  background: #fff;
  color: #34303e;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: color .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}

.sp-tab:hover,
.sp-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}

.sp-tab:hover {
  transform: translateY(-2px);
}

.sp-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  width: min(1040px, 100%);
  margin: 0 auto;
  animation: spPanelIn .38s var(--ease);
}

.sp-panel[hidden] {
  display: none;
}

.sp-panel__media {
  grid-column: 2;
  grid-row: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f6f5f9;
  box-shadow: 0 18px 46px rgba(21, 16, 43, .08);
}

.sp-panel__media img {
  display: block;
  width: 100%;
  height: min(420px, 34vw);
  min-height: 260px;
  object-fit: cover;
}

.sp-panel__media img[src*="engenharia-industrial-virtuatech"] {
  object-fit: contain;
  padding: clamp(24px, 3vw, 42px);
}

.sp-panel__content {
  grid-column: 1;
  grid-row: 1;
}

.sp-panel__content h3 {
  margin: 0 0 14px;
  color: #211c2d;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.sp-panel__content p {
  margin: 0 0 22px;
  color: #5f5b69;
  font-size: 1rem;
  line-height: 1.8;
}

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

.sp-feature-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px 12px 54px;
  border-radius: 8px;
  color: #66616f;
  font-size: 1rem;
  line-height: 1.45;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.sp-feature-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background-color: var(--brand);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.2 12.7l1.9 1.9 3.9-5.1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Z' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.2 12.7l1.9 1.9 3.9-5.1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Z' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: background-color .25s var(--ease);
}

.sp-feature-list li:hover {
  background: var(--brand);
  color: #fff;
  transform: translateX(4px);
}

.sp-feature-list a {
  color: inherit;
  text-decoration: none;
}

.sp-feature-list li:hover::before {
  background-color: #fff;
}

.sp-panel--video {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.sp-panel--video .sp-panel__content {
  grid-column: 1;
  text-align: center;
}

.sp-video {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 26px auto 0;
  border-radius: 8px;
  overflow: hidden;
  background: #15102b;
  box-shadow: 0 18px 46px rgba(21, 16, 43, .12);
}

.sp-panel__content .sp-video {
  margin: 26px auto 0;
}

.sp-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.sp-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes spPanelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 880px) {
  .service-product-section {
    padding: 58px 0;
  }

  .service-product-head {
    text-align: left;
    margin-bottom: 28px;
  }

  .service-product-head h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .sp-tabs__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .sp-tab {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .sp-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sp-panel__media,
  .sp-panel__content {
    grid-column: 1;
    grid-row: auto;
  }

  .sp-panel__media {
    order: 1;
  }

  .sp-panel__content {
    order: 2;
  }

  .sp-panel__media img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .sp-panel__content h3 {
    font-size: 1.4rem;
  }

  .sp-feature-list li {
    padding: 12px 16px 12px 48px;
    font-size: .96rem;
  }
}

/* ==============================================================
   Projetos
   ============================================================== */
.projects-overview {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 104px) 0 clamp(40px, 5vw, 64px);
  background: var(--bg);
}

.projects-overview::before,
.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("./assets/price-table-pattern-bg.jpg") top center / 100% auto repeat-x,
    url("./assets/price-h3-bg1.jpg") center top / cover no-repeat;
  opacity: .16;
  pointer-events: none;
}

.projects-overview > .container,
.projects-section > .container {
  position: relative;
  z-index: 1;
}

.projects-overview__head,
.projects-section__head {
  max-width: 780px;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.projects-overview__head {
  margin: 0 auto 30px;
  text-align: center;
}

.projects-overview__head h2,
.projects-section__head h2 {
  margin: 0 0 14px;
  color: #202124;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 700;
}

.projects-overview__head p,
.projects-section__head p {
  margin: 0;
  color: #5f5b69;
  font-size: 1.05rem;
  line-height: 1.8;
}

.projects-section__head h2 span {
  color: var(--brand);
}

.projects-jump {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.projects-jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 18px;
  border: 1px solid #e7e3ef;
  border-radius: 8px;
  background: #fff;
  color: #34303e;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 28px rgba(21, 16, 43, .04);
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.projects-jump a:hover {
  transform: translateY(-2px);
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}

.projects-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 88px) 0;
  background: var(--bg);
}

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

.projects-section__head {
  margin: 0 0 clamp(30px, 4vw, 46px);
}

.projects-tabs {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.projects-tabs__nav {
  display: grid;
  gap: 10px;
}

.projects-tab {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid #e7e3ef;
  border-radius: 8px;
  background: #fff;
  color: #34303e;
  font: inherit;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.22;
  text-align: left;
  cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.projects-tab:hover,
.projects-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}

.projects-tab:hover {
  transform: translateX(4px);
}

.project-panel {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(18px, 2.8vw, 30px);
  border: 1px solid #e7e3ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 54px rgba(21, 16, 43, .07);
  animation: projectPanelIn .34s var(--ease);
}

.project-panel[hidden] {
  display: none;
}

.project-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #171421;
  box-shadow: 0 16px 38px rgba(21, 16, 43, .1);
}

.project-media::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.project-media iframe,
.project-media video,
.project-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-media video {
  object-fit: cover;
}

.project-media--image {
  background: #f6f5f9;
}

.project-media--image img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 34px);
}

.project-media--placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: linear-gradient(135deg, #1f1930, #421faa);
  color: #fff;
  font-weight: 600;
}

.project-media--placeholder::before {
  display: none;
}

.project-copy {
  max-width: 760px;
}

.project-copy h3 {
  margin: 0 0 12px;
  color: #211c2d;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 700;
}

.project-copy p {
  margin: 0;
  color: #5f5b69;
  font-size: 1rem;
  line-height: 1.8;
}

@keyframes projectPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 880px) {
  .projects-overview,
  .projects-section {
    padding: 58px 0;
  }

  .projects-overview__head,
  .projects-section__head {
    text-align: left;
    margin-bottom: 28px;
  }

  .projects-overview__head h2,
  .projects-section__head h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

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

  .projects-tabs {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .projects-tabs__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }

  .projects-tab {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
  }

  .projects-tab:hover {
    transform: translateY(-2px);
  }

  .projects-tabs__nav > .project-panel {
    margin: 0 0 14px;
  }

  .projects-tabs__panels:empty {
    display: none;
  }

  .project-copy h3 {
    font-size: 1.4rem;
  }

  .project-copy p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .projects-overview {
    padding-bottom: 34px;
  }

  .projects-jump {
    grid-template-columns: 1fr;
  }

  .project-panel {
    padding: 14px;
  }
}

/* ==============================================================
   Artigos / posts
   ============================================================== */
.article-hero {
  position: relative;
  min-height: clamp(280px, 38vw, 440px);
  display: grid;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #18131f;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--article-hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 12, 42, .88), rgba(66, 31, 170, .55) 54%, rgba(20, 12, 42, .28));
}

.article-hero__content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(86px, 11vw, 132px) 0 clamp(42px, 6vw, 74px);
}

.article-hero__kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: #d9d0ff;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5.8vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 700;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-size: .96rem;
}

.article-breadcrumb a {
  color: #fff;
  font-weight: 600;
}

.article-layout {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--bg);
}

.article-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("./assets/price-table-pattern-bg.jpg") top center / 100% auto repeat-x,
    url("./assets/price-h3-bg1.jpg") center top / cover no-repeat;
  opacity: .15;
  pointer-events: none;
}

.article-layout > .container {
  position: relative;
  z-index: 1;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.article-content {
  color: #5f5b69;
  font-size: 17px;
  line-height: 1.8;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-lede {
  color: #2b2635;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: #211c2d;
  letter-spacing: 0;
}

.article-content h2 {
  margin: 44px 0 16px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.article-content h3 {
  margin: 34px 0 14px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.article-content h4 {
  margin: 30px 0 12px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content figure {
  margin: 0 0 22px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2em;
}

.article-content li + li {
  margin-top: 8px;
}

.article-content strong {
  color: #262130;
}

.article-content a {
  color: var(--brand);
  font-weight: 700;
}

.article-feature-img,
.article-content figure img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(21, 16, 43, .1);
}

.article-feature-img {
  margin: 0 0 32px;
  max-height: 520px;
}

.article-video {
  display: block;
  width: min(100%, 640px);
  border-radius: 8px;
  margin: 28px 0 0;
  background: #111;
  box-shadow: 0 20px 50px rgba(21, 16, 43, .1);
}

.article-video-embed {
  width: min(100%, 640px);
  aspect-ratio: 16 / 9;
  margin: 28px 0 0;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 50px rgba(21, 16, 43, .1);
}

.article-video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-media-pair {
  display: grid;
  grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin: 28px 0 0;
}

.article-media-pair .article-video {
  margin: 0;
  width: 100%;
}

.article-video--portrait {
  aspect-ratio: 9 / 16;
  max-height: 360px;
  object-fit: cover;
}

.article-matterport-link {
  display: block;
  margin: 28px 0 0;
  color: #4d465d;
  font-weight: 700;
}

.article-matterport-link .article-feature-img {
  margin-bottom: 12px;
}

.article-callout {
  margin: 28px 0;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 8px;
  background: #211c2d;
  color: #fff;
  background-image: linear-gradient(135deg, rgba(66, 31, 170, .28), rgba(255, 255, 255, 0));
}

.article-callout h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.24;
}

.article-callout .btn {
  margin-top: 4px;
  padding: 10px 18px;
  font-size: .9rem;
  color: #fff;
  box-shadow: none;
}

.article-callout .btn:hover {
  background: var(--brand);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.article-final-cta {
  min-height: 180px;
  margin: 28px 0 0;
  padding: clamp(22px, 3.2vw, 34px) clamp(20px, 3vw, 30px);
  border-radius: 8px;
  background-color: #f7f7f8;
  background-image: url("./assets/bg-final-artigo.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 16px;
  text-align: left;
}

.article-final-cta h3 {
  max-width: 460px;
  margin: 0;
  color: #211c2d;
  font-size: clamp(1.18rem, 1.75vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.article-final-cta .btn {
  justify-self: start;
  min-width: min(190px, 100%);
  padding: 10px 20px;
  font-size: .9rem;
  justify-content: flex-start;
  border-radius: 4px;
  color: #fff;
  box-shadow: none;
}

.article-final-cta .btn:hover {
  background: var(--brand);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.article-sidebar {
  display: grid;
  gap: 18px;
}

.article-sidebar--navigation {
  gap: 36px;
}

.article-side-section h3 {
  margin: 0 0 22px;
  color: #211c2d;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 700;
}

.article-company-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-company-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid #e4e0ea;
  border-radius: 4px;
  background: rgba(255, 255, 255, .86);
  color: #5c5863;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.2;
  transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}

.article-company-links a:hover {
  transform: translateX(3px);
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: none;
}

.article-download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #302c38;
  font: inherit;
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: color .22s var(--ease), transform .22s var(--ease);
}

.article-download-link:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.article-side-cta {
  position: relative;
  display: block;
  min-height: 450px;
  overflow: hidden;
  border-radius: 8px;
  color: #211c2d;
  box-shadow: 0 18px 44px rgba(21, 16, 43, .08);
}

.article-side-cta img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-side-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .12) 46%, rgba(255, 255, 255, 0));
}

.article-side-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 16px;
  width: min(230px, calc(100% - 40px));
  margin: 54px 0 0 26px;
  padding-left: 18px;
  border-left: 1px solid var(--brand);
}

.article-side-cta__content strong {
  color: #211c2d;
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  line-height: 1.34;
  letter-spacing: 0;
}

.article-side-cta__content > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: none;
  transition: background .22s var(--ease), transform .22s var(--ease);
}

.article-side-cta:hover .article-side-cta__content > span {
  transform: translateY(-2px);
  background: var(--brand);
  box-shadow: none;
}

.article-side-card {
  padding: 24px;
  border: 1px solid #e7e3ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(21, 16, 43, .06);
}

.article-side-card h3 {
  margin: 0 0 14px;
  color: #211c2d;
  font-size: 1.22rem;
  line-height: 1.25;
}

.article-side-card p {
  margin: 0 0 16px;
  color: #625d6c;
  line-height: 1.65;
}

.article-side-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-side-list a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: #4f4a59;
  background: #f7f6fb;
  font-weight: 600;
  line-height: 1.3;
  transition: color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease);
}

.article-side-list a:hover {
  transform: translateX(3px);
  background: var(--brand);
  color: #fff;
}

.article-pdf-button {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.article-note {
  display: block;
  margin-top: 10px;
  color: #7a7484;
  font-size: .88rem;
  line-height: 1.5;
}

.article-arkite-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(44px, 6vw, 74px);
}

.article-arkite-media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(21, 16, 43, .1);
}

.article-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0;
}

.article-metric {
  min-height: 132px;
  padding: 22px;
  border-radius: 8px;
  background: #f7f6fb;
  border: 1px solid #e7e3ef;
}

.article-metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 1.55rem;
  line-height: 1;
}

.article-metric span {
  color: #4f4a59;
  font-weight: 600;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0;
}

.article-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.article-page--arkite .page-banner--article .page-banner__bg img {
  object-position: center;
}

.article-video--wide {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.arkite-animated-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin: clamp(28px, 4vw, 44px) 0 22px;
  padding: 12px 0;
}

.arkite-benefit-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 176px;
  padding: 48px 18px 20px;
  border-radius: 8px;
  overflow: visible;
  background: rgba(255, 255, 255, .72);
  background-image: url("./assets/price-table-pattern-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #24202d;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .65s var(--ease), transform .65s var(--ease), background-color .22s var(--ease), color .22s var(--ease);
}

.arkite-benefit-card.is-visible,
.no-js .arkite-benefit-card {
  opacity: 1;
  transform: translateY(0);
}

.arkite-benefit-card:nth-child(2) { transition-delay: .08s; }
.arkite-benefit-card:nth-child(3) { transition-delay: .16s; }

.arkite-benefit-card.is-featured {
  background-color: var(--brand);
  background-blend-mode: multiply;
  color: #fff;
  text-align: left;
}

.arkite-animated-cards:hover .arkite-benefit-card.is-featured:not(:hover) {
  background-color: rgba(255, 255, 255, .72);
  background-blend-mode: normal;
  color: #24202d;
}

.arkite-benefit-card:hover {
  background-color: var(--brand);
  background-blend-mode: multiply;
  color: #fff;
}

.arkite-benefit-card:not(.is-featured) {
  justify-items: center;
  text-align: center;
}

.arkite-benefit-card__icon {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 40px rgba(66, 31, 170, .16);
}

.arkite-benefit-card.is-featured .arkite-benefit-card__icon {
  background: #fff;
  color: var(--brand);
}

.arkite-animated-cards:hover .arkite-benefit-card.is-featured:not(:hover) .arkite-benefit-card__icon {
  background: var(--brand);
  color: #fff;
}

.arkite-benefit-card:hover .arkite-benefit-card__icon {
  background: #fff;
  color: var(--brand);
}

.arkite-benefit-card__icon svg,
.arkite-benefit-card__icon i {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.arkite-benefit-card h3 {
  max-width: 240px;
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.32;
}

.arkite-benefit-card p {
  max-width: 250px;
  margin: 0;
  color: currentColor;
  font-size: clamp(.86rem, 1vw, .98rem);
  line-height: 1.5;
}

.arkite-benefit-card:not(.is-featured) p {
  color: #5e5968;
}

.arkite-benefit-card:hover p {
  color: currentColor;
}

.arkite-animated-cards:hover .arkite-benefit-card.is-featured:not(:hover) p {
  color: #5e5968;
}

.arkite-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 54px);
  margin: clamp(30px, 5vw, 58px) 0 clamp(28px, 4vw, 44px);
  padding: clamp(26px, 4vw, 46px) clamp(4px, 2vw, 18px);
  background-image: url("./assets/price-h3-bg1.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.arkite-kpi {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.arkite-kpi.is-visible,
.no-js .arkite-kpi {
  opacity: 1;
  transform: translateY(0);
}

.arkite-kpi:nth-child(2) { transition-delay: .08s; }
.arkite-kpi:nth-child(3) { transition-delay: .16s; }

.arkite-kpi span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--brand);
}

.arkite-kpi svg,
.arkite-kpi i {
  width: 66px;
  height: 66px;
  stroke-width: 1.9;
}

.arkite-kpi h3 {
  margin: 0;
  color: #24202d;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.22;
}

.arkite-gallery {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 34px 0 22px;
  padding: 14px;
  border: 1px solid #e8e4ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
}

.arkite-gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 30%);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 4px 2px;
}

.arkite-gallery__track::-webkit-scrollbar {
  display: none;
}

.arkite-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
  cursor: zoom-in;
  scroll-snap-align: start;
  box-shadow: 0 12px 26px rgba(21, 16, 43, .08);
}

.arkite-gallery__item::after {
  content: "Ampliar";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(33, 28, 45, .74);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

.arkite-gallery__item:hover::after,
.arkite-gallery__item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.arkite-gallery__track img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .28s var(--ease), filter .28s var(--ease);
}

.arkite-gallery__item:hover img,
.arkite-gallery__item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}

.arkite-gallery__nav {
  width: 34px;
  height: 34px;
  border: 1px solid #ded9e8;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.arkite-gallery__nav:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: clamp(18px, 4vw, 48px);
  background: rgba(12, 9, 20, .92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--ease), visibility .22s var(--ease);
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox__figure {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.gallery-lightbox__figure img {
  display: block;
  max-width: min(100%, 1180px);
  max-height: 82vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.gallery-lightbox__figure figcaption {
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  transition: background .18s var(--ease), transform .18s var(--ease);
}

.gallery-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.gallery-lightbox svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 920px) {
  .article-grid,
  .article-arkite-intro {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    order: 2;
  }

  .article-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-banner--article {
    height: 360px;
    min-height: 340px;
  }

  .page-banner--article .page-banner__title {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .article-layout {
    padding: 54px 0;
  }

  .article-content {
    font-size: 17px;
    line-height: 1.75;
  }

  .article-final-cta {
    min-height: 170px;
    padding: 22px 18px;
    gap: 14px;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-media-pair {
    grid-template-columns: 1fr;
  }

  .article-video--portrait {
    max-height: none;
  }

  .arkite-animated-cards {
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 58px;
  }

  .arkite-benefit-card {
    min-height: 168px;
  }

  .arkite-kpi-strip {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .arkite-gallery {
    grid-template-columns: minmax(0, 1fr);
    padding: 10px;
  }

  .arkite-gallery__nav {
    display: none;
  }

  .arkite-gallery__track {
    grid-auto-columns: minmax(220px, 78%);
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    padding: 58px 14px 18px;
  }

  .gallery-lightbox__nav {
    display: none;
  }
}

@media print {
  body {
    background: #fff !important;
  }

  .site-loader,
  .site-header,
  .page-banner,
  .article-hero,
  .article-sidebar,
  .article-callout,
  .footer,
  .whatsapp-fab {
    display: none !important;
  }

  .article-layout {
    padding: 0 !important;
    background: #fff !important;
  }

  .article-layout::before {
    display: none !important;
  }

  .article-grid,
  .article-arkite-intro {
    display: block !important;
  }

  .article-content {
    color: #111 !important;
    font-size: 12pt !important;
    line-height: 1.55 !important;
  }

  .article-content h2,
  .article-content h3,
  .article-content h4 {
    color: #111 !important;
    break-after: avoid;
  }
}
