:root {
  --bg: #f4efe8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-dark: #10201f;
  --text: #030140;
  --muted: #516260;
  --line: rgba(21, 34, 32, 0.1);
  --primary: #7f00f5;
  --primary-strong: #010326;
  --accent: #ff8f3d;
  --shadow: 0 22px 70px rgba(16, 32, 31, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  color: var(--text);
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 143, 61, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 18%,
      rgba(13, 138, 115, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

[id] {
  scroll-margin-top: 112px;
}

:focus-visible {
  outline: 3px solid rgba(127, 0, 245, 0.28);
  outline-offset: 4px;
}

.page-shell {
  overflow: clip;
}

.container {
  max-width: 1180px;
}

.skip-link,
.visually-hidden {
  position: absolute;
}

.skip-link {
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary-strong);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 243, 0.74);
  border-bottom: 1px solid rgba(21, 34, 32, 0.06);
}

.site-header .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}

.brand-image {
  width: min(125px, 40vw);
}

.site-nav a,
.button,
.hero-card h2,
.section-heading h2,
.service-card h3,
.case-card h3,
.cta-panel h2 {
  font-family: "Space Grotesk", sans-serif;
}

.site-nav {
  display: flex;
  flex-grow: 0;
}

.site-nav .navbar-nav {
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  color: var(--muted);
  padding-right: 0 !important;
  padding-left: 0 !important;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

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

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(21, 34, 32, 0.08);
}

.menu-toggle:focus {
  box-shadow: inset 0 0 0 1px rgba(21, 34, 32, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  padding: 62px 0 36px;
}

.hero-copy,
.hero-panel,
.service-card,
.timeline-item,
.case-card,
.cta-panel {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content !important;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(72, 4, 140, 0.12);
  color: var(--primary-strong);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 18px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-copy p,
.section-heading p,
.service-card p,
.timeline-item p,
.case-card p,
.site-footer p,
.logo-strip p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 54ch;
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0 !important;
  border-radius: 999px;
  text-align: center;
  font-weight: 500;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: #fafffe;
  background: var(--primary-strong);
  box-shadow: 0 18px 30px rgba(72, 4, 140, 0.2);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(72, 4, 140, 0.1);
}

.button-spotlight {
  color: #07122b;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    #ffb85c 0%,
    var(--accent) 48%,
    #ff7a2f 100%
  );
  box-shadow:
    0 18px 34px rgba(255, 143, 61, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 0 0 1px rgba(3, 1, 64, 0.08);
}

.button-spotlight:hover,
.button-spotlight:focus-visible {
  color: #030140;
  box-shadow:
    0 22px 40px rgba(255, 143, 61, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 0 0 1px rgba(3, 1, 64, 0.12);
}

.button-elegant {
  margin-top: 10px;
  background: linear-gradient(
    135deg,
    rgba(3, 1, 64, 0.96),
    rgba(32, 55, 123, 0.96)
  );
  color: #f7f6ff;
  box-shadow: 0 16px 28px rgba(3, 1, 64, 0.16);
}

.button-elegant:hover,
.button-elegant:focus-visible {
  color: #ffffff;
  box-shadow: 0 20px 34px rgba(3, 1, 64, 0.22);
}

.hero-card,
.service-card,
.timeline-item,
.case-card,
.cta-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.case-preview-card {
  overflow: hidden;
  padding: 16px;
}

.case-preview-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.case-preview-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.case-page-leitoras .container {
  max-width: 1240px;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.hero-card-primary {
  min-height: auto;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 143, 61, 0.24),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 250, 247, 0.88));
}

.card-tag,
.case-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 32, 31, 0.08);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-card h2 {
  margin: 20px 0 14px;
  font-size: clamp(1rem, 2vw, 1.8rem);
  line-height: 1.02;
}

.hero-card-primary p {
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.7;
}

.hero-card-secondary {
  display: grid;
  gap: 18px;
  background: var(--primary-strong);
  color: #edf6f2;
}

.hero-card-secondary span {
  display: block;
  color: rgba(237, 246, 242, 0.68);
  margin-bottom: 6px;
}

.hero-card-secondary strong {
  font-size: 1.08rem;
  line-height: 1.5;
}

.logo-strip {
  padding: 18px 0 26px;
}

.logo-strip .container {
  padding: 18px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(21, 34, 32, 0.06);
}

.logo-strip p {
  margin: 0;
  font-size: 0.95rem;
  white-space: nowrap;
}

.logo-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.logo-marquee li,
.tech-cloud li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 34, 32, 0.08);
  color: var(--text);
  font-size: 0.92rem;
}

.section {
  padding: 45px 0;
}

.section-heading {
  max-width: auto;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 2vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-card,
.case-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card {
  display: flex;
  flex-direction: column;
}

.case-card .button {
  align-self: center;
  margin-top: auto;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.service-card h3,
.case-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.service-card h3 {
  min-height: 1.3em;
}

.service-card h3 + p {
  margin-top: 0;
}

.process {
  padding-top: 12px;
}

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

.timeline-item {
  padding: 11px 12px;
  border-radius: var(--radius-md);
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.showcase {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.26),
    rgba(255, 255, 255, 0)
  );
}

.case-intro-band {
  padding-top: 8px;
  padding-bottom: 8px;
}

.case-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 248, 240, 0.92), rgba(244, 252, 249, 0.88)),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.case-band-copy h2 {
  margin: 18px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.case-band-copy p,
.case-metric span,
.dashboard-case-head p {
  color: var(--muted);
  line-height: 1.7;
}

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

.case-metric,
.dashboard-case-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.case-metric {
  display: grid;
  gap: 8px;
  padding: 20px 18px;
  border-radius: var(--radius-md);
}

.case-metric strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  border-radius: var(--radius-md) !important;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.faq-item .accordion-button {
  padding: 22px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.faq-item .accordion-button:focus {
  box-shadow: inset 0 0 0 1px rgba(127, 0, 245, 0.14);
}

.faq-item .accordion-button::after {
  filter: saturate(0.2);
}

.faq-item .accordion-body {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 28px;
  list-style: none;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top left,
      rgba(13, 138, 115, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 143, 61, 0.18),
      transparent 26%
    ),
    rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.dashboard-case-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.dashboard-case-head {
  display: grid;
  gap: 14px;
}

.dashboard-case-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1.08;
}

.dashboard-case-media {
  width: 100%;
  min-height: 320px;
  border-radius: 14px;
  border: 1px solid rgba(21, 34, 32, 0.08);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 18px 40px rgba(16, 32, 31, 0.12);
}

.portfolio-story {
  display: grid;
  gap: 24px;
}

.portfolio-card,
.portfolio-highlight,
.portfolio-screens {
  padding: 24px;
  width: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 252, 251, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.portfolio-card h3,
.portfolio-highlight h3,
.portfolio-screens h3 {
  margin: 18px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.portfolio-card p,
.portfolio-highlight p,
.portfolio-screen figcaption {
  color: var(--muted);
  line-height: 1.7;
}

.portfolio-result-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: start;
}

.portfolio-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.portfolio-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.portfolio-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffb85c);
}

.portfolio-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.portfolio-screen {
  margin: 0;
}

.portfolio-screen img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(21, 34, 32, 0.08);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 16px 30px rgba(16, 32, 31, 0.12);
}

.portfolio-screen figcaption {
  margin-top: 10px;
  font-size: 0.94rem;
}

.case-page-leitoras .hero {
  padding-top: 56px;
  padding-bottom: 22px;
}

.case-page-leitoras .hero .container {
  max-width: 1140px;
}

.case-page-leitoras .hero .row {
  --bs-gutter-x: 2.25rem;
}

.case-page-leitoras .hero-copy h1 {
  max-width: 15ch;
  line-height: 1.02;
}

.case-page-leitoras .hero-copy {
  padding-top: 6px;
  max-width: 40rem;
}

.case-page-leitoras .hero-copy > p {
  max-width: 37ch;
}

.case-page-leitoras .logo-strip .container {
  background: rgba(255, 252, 247, 0.74);
}

.case-page-leitoras .section-heading h2,
.case-page-leitoras .case-band-copy h2,
.case-page-leitoras .dashboard-case-head h3,
.case-page-leitoras .portfolio-card h3,
.case-page-leitoras .portfolio-highlight h3,
.case-page-leitoras .portfolio-screens h3 {
  line-height: 1.12;
}

.case-page-leitoras .service-card,
.case-page-leitoras .case-card,
.case-page-leitoras .timeline-item,
.case-page-leitoras .faq-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 252, 251, 0.78));
}

.case-page-leitoras .case-card {
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.case-page-leitoras #midiaCarousel {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.case-page-leitoras .hero-feature-media {
  height: 190px;
  object-fit: cover;
  object-position: top center;
}

.case-page-leitoras .hero-panel {
  gap: 20px;
  max-width: 30.5rem;
  margin-left: auto;
}

.case-page-leitoras .timeline {
  margin-top: 5%;
}

.case-page-leitoras .section-media,
.case-page-leitoras .section-media1,
.case-page-leitoras .dashboard-case-media,
.case-page-leitoras .portfolio-screen img,
.case-page-leitoras .carousel-media {
  border-radius: 14px;
}

.case-page-leitoras .dashboard-case-card,
.case-page-leitoras .portfolio-card,
.case-page-leitoras .portfolio-highlight,
.case-page-leitoras .portfolio-screens,
.case-page-leitoras .case-band {
  overflow: hidden;
}

.cta {
  padding-top: 28px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    radial-gradient(
      circle at right top,
      rgba(127, 0, 245, 0.22),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(72, 4, 140, 0.98), rgba(20, 73, 169, 0.96));
  color: #edf8f4;
}

.eyebrow-light,
.cta-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #eef9f5;
}

.cta-panel h2 {
  max-width: 20ch;
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-panel .button-primary {
  background: #fff2e7;
  color: #183431;
  box-shadow: none;
}

.cta-panel .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #eef9f5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.site-footer {
  padding: 26px 0 40px;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.footer-brand img {
  width: 26px;
}

.footer-brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.footer-layout p {
  margin: 6px 0 0;
}

.hybrid-with-images .hero-feature-media,
.hybrid-with-images .section-media,
.hybrid-with-images .section-media1,
.hybrid-with-images .service-media,
.hybrid-with-images .case-media {
  width: 100%;
  border-radius: 8px;
  object-fit: fill;
}

.hybrid-with-images .hero-feature-media {
  height: 190px;
  margin: 14px 0 2px;
}

.hybrid-with-images .section-media {
  height: 300px;
  margin-top: 16px;
}
.hybrid-with-images .section-media1 {
  height: 400px;
  margin-top: 16px;
}

.hybrid-with-images .service-media {
  height: 120px;
  margin: 0 0 12px;
}

.hybrid-with-images .case-media {
  height: 175px;
  margin-bottom: 14px;
  object-fit: cover !important;
}
.hybrid-with-images .carousel-media {
  height: auto;
  margin-bottom: 14px;
  object-fit: cover !important;
}

#midiaCarousel .carousel-indicators {
  position: static;
  margin: 8px 0 0;
  gap: 8px;
}

#midiaCarousel .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: #102a43;
  opacity: 0.3;
}

#midiaCarousel .carousel-indicators .active {
  opacity: 1;
}

#midiaCarousel .midia-control {
  width: 48px;
  opacity: 1;
  top: 42%;
  transform: translateY(-50%);
}

#midiaCarousel .midia-control-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 3, 38, 0.62);
  color: #fff;
  font-size: 20px;
}

#midiaCarousel .carousel-control-prev {
  left: 12px;
}

#midiaCarousel .carousel-control-next {
  right: 12px;
}

.carousel-nav-indicator .btn {
  border-radius: 8px;
  font-weight: 600;
}

body.lightbox-open {
  overflow: hidden;
}

.case-media-zoomable {
  cursor: zoom-in;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 28px);
  background: rgba(3, 8, 26, 0.86);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.case-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.case-lightbox-dialog {
  position: relative;
  width: min(96vw, 1280px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(10, 22, 56, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.case-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #f7fbff;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.case-lightbox-close:hover,
.case-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.case-lightbox-image {
  width: 100%;
  max-height: calc(92vh - 128px);
  border-radius: 8px;
  background: #040b1f;
  object-fit: contain;
}

.case-lightbox-caption {
  color: #f5f8ff;
  font-size: 1rem;
  line-height: 1.55;
  padding-right: 8px;
}

@media (max-width: 767.98px) {
  .hybrid-with-images .hero-feature-media,
  .hybrid-with-images .section-media,
  .hybrid-with-images .service-media,
  .hybrid-with-images .case-media {
    height: 170px;
  }

  #midiaCarousel .midia-control {
    display: none;
  }

  .case-lightbox-dialog {
    padding: 12px;
    gap: 10px;
  }

  .case-lightbox-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 27px;
  }

  .case-lightbox-image {
    max-height: calc(92vh - 110px);
  }
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

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

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

@media (max-width: 1100px) {
  .cta-panel,
  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1,
  .cta-panel h2 {
    max-width: unset;
  }

  .logo-marquee {
    justify-content: flex-start;
  }

  .logo-strip p {
    white-space: normal;
  }

  .case-band {
    grid-template-columns: 1fr;
  }

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

  .portfolio-result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .site-header .container {
    min-height: 76px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(21, 34, 32, 0.08);
    box-shadow: var(--shadow);
    gap: 0;
  }

  .site-nav .navbar-nav {
    gap: 6px;
    align-items: stretch !important;
  }

  .site-nav a {
    padding: 10px 6px !important;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-card,
  .service-card,
  .case-card,
  .cta-panel,
  .faq-item .accordion-button,
  .faq-item .accordion-body {
    padding: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .logo-strip .container {
    border-radius: 28px;
  }

  .case-band {
    padding: 22px;
  }

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

  .dashboard-case-media {
    min-height: 220px;
  }

  .portfolio-screen-grid {
    grid-template-columns: 1fr;
  }
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.32);
  z-index: 1030;
}

.whatsapp-float::before {
  content: "";
  width: 1.65rem;
  height: 1.65rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19.05 4.91A9.82 9.82 0 0 0 12.03 2a9.93 9.93 0 0 0-8.6 14.9L2 22l5.25-1.37a9.92 9.92 0 0 0 4.76 1.21h.01c5.48 0 9.94-4.46 9.94-9.94A9.86 9.86 0 0 0 19.05 4.91ZM12.03 20.16h-.01a8.23 8.23 0 0 1-4.19-1.14l-.3-.18-3.12.82.83-3.04-.2-.31a8.24 8.24 0 1 1 7 3.85Zm4.52-6.17c-.25-.13-1.5-.74-1.73-.83-.23-.08-.4-.12-.57.13-.17.25-.66.83-.8 1-.15.17-.3.19-.55.06-.25-.13-1.07-.39-2.03-1.26-.75-.67-1.25-1.5-1.4-1.75-.15-.25-.02-.38.11-.5.11-.11.25-.3.38-.45.13-.15.17-.25.25-.42.08-.17.04-.32-.02-.45-.06-.13-.57-1.37-.78-1.88-.21-.5-.42-.42-.57-.43h-.49c-.17 0-.45.06-.68.32-.23.25-.87.85-.87 2.08 0 1.22.89 2.41 1.01 2.58.13.17 1.75 2.67 4.25 3.74.59.25 1.05.4 1.41.51.59.19 1.12.16 1.54.1.47-.07 1.5-.61 1.71-1.2.21-.59.21-1.09.15-1.2-.07-.1-.23-.17-.48-.29Z'/%3E%3C/svg%3E");
}
' '
