@import url("https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --blue-900: #132575;
  --blue-800: #172a86;
  --blue-600: #3848d7;
  --blue-500: #3f54f4;
  --cyan-300: #37d8f2;
  --green-400: #8edb8f;
  --ink: #202328;
  --muted: #606775;
  --soft: #f5f6f8;
  --line: #d9dce5;
  --white: #ffffff;
  --gray-900: #333333;
  --shadow: 0 18px 42px rgba(19, 37, 117, 0.18);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  animation: pageEnter 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

html.is-page-leaving body {
  animation: pageExit 220ms cubic-bezier(0.4, 0, 1, 1) forwards;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 320ms;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

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

.container {
  width: min(calc(100vw - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(224, 224, 224, 0.88);
  border-bottom: 1px solid rgba(19, 37, 117, 0.12);
  backdrop-filter: blur(16px) saturate(1.1);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-900);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.7vw, 28px);
  color: var(--blue-900);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.btn)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 14px 28px rgba(56, 72, 215, 0.34);
}

.btn-primary:hover {
  background: var(--blue-900);
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border-color: rgba(19, 37, 117, 0.2);
}

.btn-secondary:hover {
  border-color: var(--blue-600);
  box-shadow: 0 12px 24px rgba(19, 37, 117, 0.12);
}

.btn-dark {
  color: var(--white);
  background: var(--blue-900);
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  --device-parallax-x: 0px;
  --device-parallax-y: 0px;
  position: relative;
  min-height: clamp(610px, 34vw, 700px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, #f1f1f0 0%, #fbfbfa 46%, #ecf4f4 100%);
}

.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-arcs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
  transition: transform 140ms linear;
  will-change: transform;
}

.hero-arcs::before,
.hero-arcs::after {
  position: absolute;
  content: "";
  background: url("hero-apoio-loop.webp") center / contain no-repeat;
  opacity: 0.66;
}

.hero-arcs::before {
  left: clamp(-520px, -25vw, -330px);
  top: clamp(-118px, -5vw, -56px);
  width: clamp(700px, 45vw, 930px);
  aspect-ratio: 3 / 4;
}

.hero-arcs::after {
  right: clamp(-420px, -17vw, -230px);
  top: clamp(-112px, -5vw, -46px);
  width: clamp(850px, 56vw, 1160px);
  aspect-ratio: 3 / 4;
}

.hero::after {
  display: none;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(241, 241, 240, 0.88) 0%, rgba(248, 248, 247, 0.8) 42%, rgba(235, 242, 242, 0.86) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(610px, 34vw, 700px);
  display: grid;
  grid-template-columns: minmax(610px, 1fr) minmax(460px, 0.85fr);
  align-items: center;
  gap: 0;
  padding: clamp(54px, 5vw, 84px) 0 clamp(46px, 4vw, 70px);
}

.hero-copy {
  max-width: 680px;
  justify-self: start;
  padding-left: clamp(28px, 3vw, 52px);
  animation: heroTextIn 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

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

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--blue-900);
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.45rem, 2.95vw, 3.7rem);
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-title-line {
  white-space: nowrap;
}

.hero p,
.page-hero p,
.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero p {
  max-width: 525px;
  color: #4b4d54;
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  font-weight: 800;
  line-height: 1.42;
}

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

.hero-visual {
  position: relative;
  min-height: clamp(520px, 32vw, 650px);
  animation: heroVisualIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.hero-device {
  position: absolute;
  top: 50%;
  right: clamp(-520px, -21vw, -292px);
  width: min(78vw, 1250px);
  min-width: 900px;
  transform: translate3d(var(--device-parallax-x), calc(-48% + var(--device-parallax-y)), 0);
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.28));
  animation: deviceFloat 6.5s ease-in-out infinite;
  will-change: transform, translate;
}

.hero-screen,
.hero-monitor {
  display: none;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.metric {
  min-height: 92px;
  border: 1px solid rgba(19, 37, 117, 0.11);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.metric strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: 94px 0;
}

.section-gray {
  background: #ededed;
}

.section-blue {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(118deg, var(--blue-900), var(--blue-600));
}

.section-blue::after {
  position: absolute;
  right: -90px;
  bottom: -190px;
  width: 560px;
  height: 560px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}

.customer-logos {
  overflow: hidden;
  padding: 78px 0 84px;
  border-block: 1px solid rgba(19, 37, 117, 0.08);
  background: linear-gradient(180deg, #fafbfc 0%, #f1f3f8 100%);
}

.customer-logos .section-header {
  margin-bottom: 38px;
}

.customer-logos .section-title {
  margin-top: 8px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.customer-logos .section-lead {
  max-width: 580px;
  margin-inline: auto;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  padding-block: 4px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.logo-marquee + .logo-marquee {
  margin-top: 18px;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.logo-track.is-ready {
  animation: logoMarquee 68s linear infinite;
}

.logo-marquee[data-direction="reverse"] .logo-track.is-ready {
  animation-direction: reverse;
  animation-duration: 72s;
}

.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track {
  animation-play-state: paused;
}

.logo-group {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
}

.logo-card {
  display: grid;
  width: 182px;
  height: 108px;
  flex: 0 0 182px;
  place-items: center;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(19, 37, 117, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(19, 37, 117, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.logo-card:hover {
  z-index: 1;
  border-color: rgba(63, 84, 244, 0.26);
  box-shadow: 0 16px 34px rgba(19, 37, 117, 0.13);
  transform: translateY(-3px);
}

.logo-card-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: #161923;
}

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

.section-header.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-title {
  margin-bottom: 14px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.02;
}

.section-blue .section-title,
.section-blue .section-lead,
.section-blue .eyebrow {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 68px;
}

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(19, 37, 117, 0.2);
}

.media-panel:hover img {
  transform: scale(1.035);
}

.value-cloud {
  position: absolute;
  inset: auto 24px 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.pill-blue {
  color: var(--white);
  background: var(--blue-600);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--cyan-300) 0 28%, var(--blue-600) 31% 100%);
}

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

.feature-card,
.plan-card,
.post-card,
.segment-card,
.segment-guide-card,
.segment-detail-card,
.segment-mini-card,
.quote-card,
.contact-card,
.faq-item {
  border: 1px solid rgba(19, 37, 117, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card {
  min-height: 238px;
  padding: 26px;
}

.feature-card:hover,
.quote-card:hover,
.post-card:hover,
.segment-card:hover,
.segment-guide-card:hover,
.segment-detail-card:hover,
.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 72, 215, 0.32);
  box-shadow: 0 18px 34px rgba(19, 37, 117, 0.12);
}

.feature-icon,
.segment-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue-600);
  border: 1px solid rgba(56, 72, 215, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.feature-card h3,
.plan-card h3,
.post-card h3,
.segment-card h3,
.segment-guide-card h3,
.segment-detail-card h3,
.segment-mini-card h3,
.contact-card h3 {
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 1.12rem;
  line-height: 1.12;
}

.feature-card p,
.plan-card p,
.post-card p,
.segment-card p,
.segment-detail-card p,
.segment-mini-card p,
.quote-card p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.compact-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.compact-list li + li {
  margin-top: 7px;
}

.video-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 54px;
}

.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b1028;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.player iframe,
.player img {
  width: 100%;
  height: 100%;
}

.player iframe {
  border: 0;
}

.player img {
  object-fit: cover;
  opacity: 0.95;
}

.player-image {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(55, 216, 242, 0.16), transparent 58%),
    rgba(4, 14, 57, 0.34);
}

.player-image img {
  width: min(94%, 760px);
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.32));
}

.player:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 54px rgba(0, 0, 0, 0.26);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.88);
  transform: translate(-50%, -50%);
}

.quote-grid,
.plan-grid,
.segment-grid,
.post-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.segment-guide-section {
  position: relative;
  overflow: hidden;
}

.segment-guide-section::before {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: min(620px, 52vw);
  aspect-ratio: 3 / 4;
  content: "";
  background: url("brand-ribbon.webp") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.segment-guide-section .container {
  position: relative;
  z-index: 1;
}

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

.segment-guide-card {
  position: relative;
  min-height: 210px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 22px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.84);
}

.segment-guide-card::after {
  position: absolute;
  inset: auto -34px -70px auto;
  width: 160px;
  height: 160px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 216, 242, 0.3), rgba(56, 72, 215, 0));
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.segment-guide-card:hover::after {
  opacity: 0.9;
  transform: translate(-12px, -12px) scale(1.12);
}

.segment-guide-card:focus-visible,
.segment-detail-card:focus-visible {
  outline: 3px solid rgba(56, 72, 215, 0.34);
  outline-offset: 3px;
}

.segment-guide-media,
.segment-detail-icon {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(56, 72, 215, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #eff3ff);
}

.segment-guide-media {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
}

.segment-guide-media img,
.segment-detail-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.segment-guide-card:hover .segment-guide-media img,
.segment-detail-card:hover .segment-detail-icon img {
  transform: scale(1.08) rotate(-2deg);
}

.segment-guide-order {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(19, 37, 117, 0.18);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.segment-guide-card h3 {
  max-width: 170px;
  margin-bottom: 22px;
  font-size: 1.24rem;
}

.segment-card-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.86rem;
  font-weight: 900;
}

.segment-card-action .icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.segment-guide-card:hover .segment-card-action .icon {
  transform: translateX(4px);
}

.segment-guide-card-wide {
  grid-column: span 2;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  box-shadow: var(--shadow);
}

.segment-guide-card-wide h3,
.segment-guide-card-wide .segment-card-action {
  color: var(--white);
}

.segment-guide-card-wide .segment-guide-order {
  color: rgba(255, 255, 255, 0.2);
}

.segment-guide-card-wide .segment-guide-media {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.segment-detail-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 246, 248, 0.72) 100%);
}

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

.segment-detail-card {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.segment-detail-card:target {
  border-color: rgba(56, 72, 215, 0.78);
  box-shadow: 0 20px 38px rgba(19, 37, 117, 0.16);
}

.segment-detail-icon {
  width: 64px;
  height: 64px;
}

.segment-detail-card h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.segment-result-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 54px;
}

.segment-result-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(19, 37, 117, 0.16);
  border-radius: var(--radius);
  padding: 30px;
  background:
    radial-gradient(circle at 85% 12%, rgba(55, 216, 242, 0.22), transparent 32%),
    linear-gradient(140deg, #ffffff, #edf3f7);
  box-shadow: var(--shadow);
}

.segment-result-panel::before {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 330px;
  aspect-ratio: 3 / 4;
  content: "";
  background: url("brand-ribbon.webp") center / contain no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.segment-result-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 38px rgba(19, 37, 117, 0.18);
}

.segment-result-metric {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  max-width: 250px;
  border: 1px solid rgba(56, 72, 215, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 32px rgba(19, 37, 117, 0.16);
}

.segment-result-metric strong {
  display: block;
  color: var(--blue-900);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}

.segment-result-metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.all-segments-content .section-title {
  max-width: 620px;
}

.all-segments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.segment-mini-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.segment-mini-card h3 {
  margin-bottom: 7px;
  font-size: 0.98rem;
}

.segment-mini-card p {
  font-size: 0.88rem;
  line-height: 1.45;
}

.quote-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  color: inherit;
}

.quote-logo {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(19, 37, 117, 0.13);
  border-radius: 50%;
  margin-bottom: 22px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(19, 37, 117, 0.1);
}

.quote-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-logo-contain img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.quote-logo-photo img {
  object-fit: cover;
}

.quote-mark {
  color: var(--blue-600);
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 0.65;
}

.quote-person {
  display: block;
  margin-top: auto;
  padding-top: 18px;
}

.quote-person strong {
  display: block;
  color: var(--blue-900);
}

.quote-person span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.support-photo {
  position: relative;
}

.support-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.support-photo:hover img {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(19, 37, 117, 0.2);
}

.home-support .support-photo img {
  aspect-ratio: 16 / 9;
}

.contact-hours-media img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.contact-hours-media .floating-tags .pill {
  min-height: 58px;
  padding: 0 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  font-size: clamp(1.05rem, 1.12vw, 1.22rem);
  box-shadow: 0 18px 34px rgba(19, 37, 117, 0.22);
  animation: tagFloat 5.8s ease-in-out infinite;
}

.contact-hours-media .floating-tags .pill:nth-child(1) {
  top: 12%;
  left: -8%;
}

.contact-hours-media .floating-tags .pill:nth-child(2) {
  top: 26%;
  right: -7%;
  animation-delay: -1.5s;
}

.contact-hours-media .floating-tags .pill:nth-child(3) {
  left: -6%;
  bottom: 24%;
  animation-delay: -3s;
}

.home-support .floating-tags .pill {
  min-height: 52px;
  padding: 0 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  font-size: clamp(0.95rem, 1.1vw, 1.12rem);
  box-shadow: 0 18px 34px rgba(19, 37, 117, 0.22);
  animation: tagFloat 5.6s ease-in-out infinite;
}

.home-support .floating-tags .pill:nth-child(1) {
  top: -7%;
  left: -8%;
}

.home-support .floating-tags .pill:nth-child(2) {
  right: -9%;
  animation-delay: -1.3s;
}

.home-support .floating-tags .pill:nth-child(3) {
  left: -9%;
  animation-delay: -2.6s;
}

.home-support .floating-tags .pill:nth-child(4) {
  animation-delay: -3.9s;
}

.plan-guidance-media img {
  aspect-ratio: 4 / 3;
  object-position: center 56%;
}

.plan-guidance-media .floating-tags .pill {
  min-height: 60px;
  padding: 0 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  font-size: clamp(1.05rem, 1.14vw, 1.25rem);
  box-shadow: 0 18px 34px rgba(19, 37, 117, 0.22);
  animation: tagFloat 5.8s ease-in-out infinite;
}

.plan-guidance-media .floating-tags .pill:nth-child(1) {
  top: 12%;
  left: -8%;
}

.plan-guidance-media .floating-tags .pill:nth-child(2) {
  top: 31%;
  right: -8%;
  animation-delay: -1.5s;
}

.plan-guidance-media .floating-tags .pill:nth-child(3) {
  left: -6%;
  bottom: 24%;
  animation-delay: -3s;
}

.floating-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-tags .pill {
  position: absolute;
  box-shadow: 0 12px 22px rgba(19, 37, 117, 0.16);
}

.floating-tags .pill:nth-child(1) {
  top: 12%;
  left: -8%;
}

.floating-tags .pill:nth-child(2) {
  top: 26%;
  right: -7%;
}

.floating-tags .pill:nth-child(3) {
  bottom: 24%;
  left: -6%;
}

.floating-tags .pill:nth-child(4) {
  right: 5%;
  bottom: 8%;
}

.brand-statement {
  padding: 86px 0;
  text-align: center;
  background: #efefef;
}

.brand-statement img {
  width: 230px;
  margin: 0 auto 28px;
}

.brand-statement p {
  max-width: 430px;
  margin: 0 auto;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--gray-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 44px;
  padding: 62px 0 34px;
}

.footer-title {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-logo {
  width: 150px;
  margin-left: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  text-align: center;
}

.page-hero {
  --page-ring-x: 0px;
  --page-ring-y: 0px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 22%, rgba(55, 216, 242, 0.14), transparent 34%),
    linear-gradient(118deg, #f4f5f4 0%, #ffffff 48%, #edf8fa 100%);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.page-hero::after {
  position: absolute;
  right: clamp(-430px, -20vw, -250px);
  top: clamp(-180px, -9vw, -86px);
  z-index: 0;
  width: min(760px, 54vw);
  aspect-ratio: 3 / 4;
  content: "";
  background: url("hero-apoio-loop.webp") center / contain no-repeat;
  opacity: 0.58;
  transform: translate3d(var(--page-ring-x), var(--page-ring-y), 0) rotate(-3deg);
  transition: transform 140ms linear;
  will-change: transform;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 92px 0 84px;
}

.page-hero p {
  max-width: 650px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 800;
}

.plan-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 30px;
}

.plan-card.featured {
  color: var(--white);
  background: linear-gradient(150deg, var(--blue-900), var(--blue-600));
  box-shadow: var(--shadow);
}

.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured .compact-list {
  color: var(--white);
}

.plan-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
}

.plan-card .btn {
  margin-top: auto;
}

.segment-card,
.post-card,
.contact-card {
  padding: 24px;
}

.post-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
}

.post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.mini-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.mini-card {
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

.mini-card:nth-child(2) {
  background: linear-gradient(135deg, #2f3137, var(--blue-900));
}

.faq-stack {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item button {
  width: 100%;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0 22px;
  color: var(--blue-900);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  color: var(--blue-600);
  font-size: 1.4rem;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item [data-faq-panel] {
  padding: 0 22px 22px;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-color: #d22f43;
  box-shadow: 0 0 0 4px rgba(210, 47, 67, 0.1);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(56, 72, 215, 0.12);
}

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

.contact-form .btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.form-status[data-status="success"] {
  color: #0d7c49;
}

.form-status[data-status="error"] {
  color: #b42337;
}

.form-status[data-status="loading"] {
  color: var(--blue-600);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 54px;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-900), var(--blue-600));
}

.cta-panel::after {
  position: absolute;
  right: -120px;
  top: -150px;
  width: 440px;
  height: 440px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 660px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.cta-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 90;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  justify-items: end;
  gap: 12px;
  font-family: "Onest", Arial, sans-serif;
  pointer-events: none;
}

.whatsapp-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(19, 37, 117, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 54px rgba(19, 37, 117, 0.22);
  opacity: 0;
  transform: translate3d(18px, 18px, 0) scale(0.96);
  transform-origin: 100% 100%;
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.whatsapp-widget.is-open .whatsapp-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.whatsapp-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(6deg);
}

.whatsapp-close .icon {
  width: 17px;
  height: 17px;
}

.whatsapp-header {
  padding: 22px 58px 22px 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 28%, rgba(55, 216, 242, 0.24), transparent 34%),
    linear-gradient(135deg, #075f55, var(--blue-900));
}

.whatsapp-header span,
.whatsapp-header strong {
  display: block;
}

.whatsapp-header span {
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.84;
}

.whatsapp-header strong {
  margin-top: 2px;
  font-size: 1.02rem;
  line-height: 1.18;
}

.whatsapp-body {
  padding: 20px 20px 18px;
  background:
    radial-gradient(circle at 14% 10%, rgba(142, 219, 143, 0.26), transparent 34%),
    linear-gradient(180deg, #f2f5f2, #ffffff);
}

.whatsapp-message {
  position: relative;
  display: grid;
  gap: 4px;
  border-radius: 8px;
  padding: 18px 20px;
  color: #4f5868;
  background: #daf8c9;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.whatsapp-message::before {
  position: absolute;
  left: -8px;
  top: 18px;
  width: 18px;
  height: 18px;
  content: "";
  background: #daf8c9;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.whatsapp-cta {
  width: calc(100% - 40px);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 20px 10px;
  border-radius: 999px;
  color: var(--white);
  background: #23cf64;
  font-weight: 900;
  box-shadow: 0 16px 26px rgba(35, 207, 100, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-cta:hover {
  background: #16b954;
  box-shadow: 0 18px 30px rgba(35, 207, 100, 0.34);
  transform: translateY(-2px);
}

.whatsapp-cta svg,
.whatsapp-fab svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px 18px;
  color: #697080;
  font-size: 0.88rem;
  font-weight: 700;
}

.whatsapp-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #72b956;
  box-shadow: 0 0 0 5px rgba(114, 185, 86, 0.14);
}

.whatsapp-fab {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #23cf64;
  box-shadow: 0 18px 34px rgba(19, 37, 117, 0.22);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.whatsapp-fab:hover {
  background: #16b954;
  box-shadow: 0 20px 38px rgba(19, 37, 117, 0.28);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-widget.is-open .whatsapp-fab {
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  pointer-events: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes ribbonDrift {
  from {
    background-position: center 48%;
  }
  to {
    background-position: center 53%;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoMarquee {
  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

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

@keyframes pageExit {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 18px 34px rgba(19, 37, 117, 0.22), 0 0 0 0 rgba(35, 207, 100, 0.26);
  }
  50% {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 22px 38px rgba(19, 37, 117, 0.24), 0 0 0 14px rgba(35, 207, 100, 0);
  }
}

@media (max-width: 1240px) {
  .menu-toggle {
    display: block;
    position: relative;
    flex: 0 0 auto;
    z-index: 70;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
    animation: menuDrop 220ms ease both;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav .btn {
    margin-top: 8px;
  }

  .hero-inner,
  .split,
  .video-band,
  .mini-band,
  .segment-result-layout {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 650px;
    font-size: clamp(2.1rem, 5.2vw, 3.05rem);
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 7vw, 4rem);
  }

  .page-hero::after {
    right: -320px;
    top: -60px;
    width: min(680px, 62vw);
    opacity: 0.34;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 70px;
  }

  .hero-visual {
    min-height: 370px;
  }

  .hero-copy {
    max-width: 720px;
    justify-self: start;
    padding-left: 0;
  }

  .hero-arcs::before,
  .hero-arcs::after {
    opacity: 0.42;
  }

  .hero-arcs::before {
    left: -540px;
    top: 210px;
    width: 760px;
  }

  .hero-arcs::after {
    right: -420px;
    top: 86px;
    width: 900px;
  }

  .hero-device {
    right: 50%;
    width: min(96vw, 820px);
    min-width: 0;
    transform: translate3d(50%, calc(-48% + var(--device-parallax-y)), 0);
  }

  .feature-grid,
  .quote-grid,
  .plan-grid,
  .segment-grid,
  .segment-detail-grid,
  .post-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    margin-left: 0;
  }

  .floating-tags {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  .floating-tags .pill {
    position: static;
  }

  .home-support .floating-tags .pill {
    min-height: 42px;
    padding: 0 18px;
    animation: none;
  }

  .plan-guidance-media .floating-tags .pill {
    min-height: 42px;
    padding: 0 18px;
    animation: none;
  }

  .contact-hours-media .floating-tags .pill {
    min-height: 42px;
    padding: 0 18px;
    animation: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100vw - 28px), var(--max));
  }

  .brand img {
    width: 132px;
  }

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

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .hero {
    --hero-parallax-x: 0px;
  }

  .hero-arcs {
    transform: translate3d(0, var(--hero-parallax-y), 0);
  }

  .hero-arcs::before,
  .hero-arcs::after {
    background-image: url("hero-apoio-loop-small.webp");
    opacity: 0.48;
  }

  .hero-arcs::before {
    left: -440px;
    top: 54px;
    width: 610px;
  }

  .hero-arcs::after {
    right: -430px;
    top: 160px;
    width: 650px;
  }

  .hero::after {
    display: none;
  }

  .page-hero::after {
    display: none;
  }

  .hero-inner,
  .page-hero-inner {
    padding-top: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.95rem, 7.6vw, 2.25rem);
    line-height: 1.02;
    word-break: break-word;
  }

  .hero h1 {
    max-width: min(100%, 354px);
    font-size: clamp(1.72rem, 6.6vw, 1.96rem);
    line-height: 1.12;
  }

  .hero p {
    max-width: min(100%, 340px);
    font-size: 0.98rem;
  }

  .hero-desktop-break {
    display: none;
  }

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

  .hero-copy {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
    margin-top: 6px;
  }

  .hero-device {
    width: min(148vw, 620px);
    right: 46%;
    transform: translate3d(50%, calc(-38% + var(--device-parallax-y)), 0);
  }

  .hero .btn {
    min-width: 148px;
  }

  .value-cloud {
    inset: auto 12px 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .value-cloud .pill {
    justify-content: center;
    min-height: 29px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .metric-row,
  .feature-grid,
  .quote-grid,
  .plan-grid,
  .segment-grid,
  .segment-guide-grid,
  .segment-detail-grid,
  .all-segments-grid,
  .post-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .segment-guide-card-wide {
    grid-column: auto;
  }

  .segment-guide-card {
    min-height: 178px;
  }

  .segment-detail-card {
    grid-template-columns: 1fr;
  }

  .segment-result-panel {
    min-height: 320px;
    padding: 20px;
  }

  .segment-result-metric {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .customer-logos {
    padding: 58px 0 64px;
  }

  .customer-logos .section-header {
    width: min(calc(100vw - 28px), var(--max));
    margin-bottom: 30px;
  }

  .logo-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  }

  .logo-track,
  .logo-group {
    gap: 12px;
  }

  .logo-card {
    width: 154px;
    height: 94px;
    flex-basis: 154px;
    padding: 15px 17px;
  }

  .logo-card img {
    height: 62px;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .cta-panel {
    padding: 34px 22px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
    width: min(340px, calc(100vw - 28px));
  }

  .whatsapp-card {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .whatsapp-header {
    padding: 18px 54px 18px 20px;
  }

  .whatsapp-body {
    padding: 16px;
  }

  .whatsapp-message {
    padding: 16px;
    font-size: 0.94rem;
  }

  .whatsapp-cta {
    width: calc(100% - 32px);
    margin: 16px 16px 10px;
  }

  .whatsapp-fab {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }

  .hero {
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
    --device-parallax-x: 0px;
    --device-parallax-y: 0px;
  }

  .page-hero {
    --page-ring-x: 0px;
    --page-ring-y: 0px;
  }

  .logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }

  .logo-track.is-ready {
    animation: none !important;
  }

  .hero::before {
    transition: none;
  }
}
