:root {
  --color-green: rgb(22 163 74);
  --color-pink: rgb(232 97 171);
  --color-orange: rgb(255 151 38);
  --color-blue: hsl(217 91% 60%);
  --gradient-primary: linear-gradient(120deg,
      color-mix(in srgb, var(--color-orange) 80%, var(--color-pink) 20%) 0%,
      color-mix(in srgb, var(--color-orange) 65%, var(--color-pink) 35%) 40%,
      color-mix(in srgb, var(--color-pink) 70%, var(--color-blue) 30%) 78%,
      color-mix(in srgb, var(--color-blue) 60%, var(--color-pink) 40%) 100%);
  --bg: #0b1220;
  --bg-soft: #0f172a;
  --text: #e7eefc;
  --text-muted: #97a3ba;
  --link: hsl(217 91% 70%);
  --brand: var(--bg);
  --accent: var(--color-pink);
  --cta: var(--color-orange);
  --focus: hsl(217 91% 70%);
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --fs-sm: clamp(.9rem, .86rem + .2vw, .98rem);
  --fs-md: clamp(1rem, .96rem + .25vw, 1.0625rem);
  --fs-lg: clamp(1.2rem, 1.05rem + .8vw, 1.6rem);
  --fs-xl: clamp(1.8rem, 1.2rem + 2.2vw, 2.8rem);
  --fs-2xl: clamp(2.4rem, 1.6rem + 4vw, 4rem);
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --container: 1220px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 40%), 0 1px 1px rgb(0 0 0 / 20%);
  --shadow-md: 0 10px 28px rgb(0 0 0 / 40%), 0 2px 12px rgb(0 0 0 / 30%);
  --shadow-lg: 0 18px 42px rgb(0 0 0 / 45%);
  --ease: cubic-bezier(.2, .6, .2, 1);
  --fast: 150ms;
  --normal: 250ms;
  --header-h: 88px;
  --th-h: 50px;
  --header-h: 68px;
  --th-fg: var(--text-muted);
  --th-border: color-mix(in srgb, var(--text) 12%, transparent);
}

*,
*:before,
*:after {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(2, 6, 23, .55), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, .65), rgba(2, 6, 23, .35) 40%, rgba(2, 6, 23, .7)),
    url("/images/banner.png");
  background-size: cover, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center;
  background-attachment: fixed, fixed, fixed;
  overflow-x: hidden;
  padding-top: 0;
}

body.no-top-header .site-header {
  top: 0;
}

a {
  color: var(--link);
  text-decoration: none
}

a:hover {
  text-decoration: none;
  filter: brightness(1.1) saturate(1.1)
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -.02em
}

h1 {
  font-size: var(--fs-2xl)
}

h2 {
  font-size: var(--fs-xl)
}

h3 {
  font-size: var(--fs-lg)
}

p {
  margin: 0 0 1em
}

.icon,
.lucide {
  width: 22px;
  height: 22px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 0;
  cursor: pointer;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), filter var(--fast) var(--ease)
}

.btn:active {
  transform: translateY(1px) scale(.98)
}

.btn--gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: var(--color-pink);
  background: transparent;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--cta) 70%, transparent);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(3px) saturate(120%);
  -webkit-backdrop-filter: blur(5px) saturate(120%);
  overflow: hidden;
  transition:
    transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    filter var(--fast) var(--ease);
}

.btn--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-primary);
  opacity: 0.10;
}

.btn--gradient:hover,
.btn--gradient:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--cta) 90%, #ffffff 10%);
  filter: saturate(1.05) brightness(1.03);
  outline: none;
}

/* opcional: reforçar o gradiente no hover */
.btn--gradient:hover::before,
.btn--gradient:focus-visible::before {
  opacity: 0.32;
}

.btn--whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background-color: rgba(22, 163, 74, 0.062);
  border: 1px solid rgba(22, 163, 74, 0.65);
  color: var(--color-green);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(5px) saturate(110%);
  -webkit-backdrop-filter: blur(5px) saturate(110%);
  transition:
    transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    background-color var(--fast) var(--ease),
    border-color var(--fast) var(--ease);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background-color: rgba(22, 163, 74, 0.411);
  border-color: rgba(22, 163, 74, 0.9);
  outline: none;
  filter: none;
}

.btn--lg {
  padding: 1.05rem 1.35rem;
  font-size: 1.05rem
}

.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.05) brightness(1.02)
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.1) brightness(1.03)
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.top-header {
  position: relative;
  z-index: 1;
  width: 100%;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--th-fg);
  border-bottom: 1px solid var(--th-border);
}

.top-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: var(--th-h);
  padding: 0 var(--space-4, 1rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-3, .75rem);
}

.top-header__text {
  font: 600 var(--fs-sm, .95rem)/1 var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--th-fg);
}

.top-header__social {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  transition: transform var(--fast) var(--ease), border-color var(--fast) var(--ease);
}

.top-header__social i {
  width: 18px;
  height: 18px;
  color: color-mix(in srgb, var(--text) 70%, transparent);
}

.top-header__social:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--link) 40%, transparent);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--th-h);
  z-index: 110;
  background: transparent;
  border: 0;
  transition: top var(--fast) var(--ease),
    background-color var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    backdrop-filter var(--fast) var(--ease);
}

.site-header+* {
  margin-top: var(--header-h);
}

.site-header+main {
  margin-top: var(--header-h);
}

body.no-top-header .site-header {
  top: 0;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem
}

.site-header.is-scrolled {
  background: color-mix(in srgb, #0b1220 88%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid color-mix(in oklab, #ffffff 10%, transparent);
  box-shadow: 0 8px 24px rgb(0 0 0 / 35%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem
}

.brand img {
  height: clamp(48px, 6vw, 72px);
  width: auto
}

.nav {
  --gap: 1.4rem
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-list a {
  display: inline-block;
  padding: .6rem .2rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  position: relative
}

.nav-list a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .25rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--fast) var(--ease), background var(--fast);
  background: var(--gradient-primary);
  border-radius: 2px
}

.nav-list a:hover:after {
  transform: scaleX(1)
}

.nav-list a.is-active {
  color: var(--brand)
}

.nav-list a.is-active:after {
  transform: scaleX(1)
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem
}

.cta-desktop {
  display: inline-flex
}

.nav-item {
  position: relative;
}

.nav-item__wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dd-toggle {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  color: #fff;
}

.nav-dd-toggle .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.18s ease;
  stroke-width: 2.2;
}

.nav-dd-toggle[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  list-style: none;

  border-radius: 0.75rem;
  border: 1px solid var(--glass-border, rgba(148, 163, 184, 0.35));
  background:
    var(--nav-dd-bg,
      color-mix(in srgb, #020617 60%, #0f172a 40%));
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.55),
    0 0 0 1px rgba(15, 23, 42, 0.85);

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 40;
}

.nav-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown[hidden] {
  display: block;
  opacity: 0;
  pointer-events: none;
}

.nav-dropdown>li>a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.86);
  white-space: nowrap;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    padding-left 0.12s ease;
}

.nav-dropdown>li>a:hover,
.nav-dropdown>li>a:focus-visible {
  background: rgba(148, 163, 184, 0.16);
  color: #e5e7eb;
  padding-left: 1.15rem;
}

.nav-dropdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 0.45rem 1rem;
}

.nav-dropdown__row>a {
  flex: 1;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-dd-toggle--inner {
  padding-left: 0.25rem;
}

.nav-dd-toggle--inner .icon {
  width: 0.9rem;
  height: 0.9rem;
}

.nav-dropdown__item {
  position: relative;
}

.nav-dropdown--inner {
  position: static;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 1.25rem;

  background: transparent;
  border: none;
  box-shadow: none;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;

  transition:
    max-height 0.18s ease,
    opacity 0.18s ease;
}

.nav-dropdown--inner.is-open {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto;

  margin-top: 0.15rem;
  padding-top: 0.25rem;
  padding-bottom: 0.35rem;
}

.nav-dropdown--inner>li>a {
  display: block;
  padding: 0.28rem 0;
  padding-right: 1rem;
  font-size: 0.86rem;
  text-decoration: none;
  color: rgba(203, 213, 225, 0.92);
  white-space: nowrap;
  transition:
    color 0.15s ease,
    transform 0.12s ease;
}

.nav-dropdown--inner>li>a:hover,
.nav-dropdown--inner>li>a:focus-visible {
  color: #e5e7eb;
  transform: translateX(2px);
}

.nav-dropdown__empty {
  display: block;
  padding: 0.25rem 1rem 0.35rem 0;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
}

.nav-close {
  display: none;
}

.hamburger {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: .25rem;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 12px
}

.hamburger:hover {
  background: color-mix(in srgb, var(--text) 20%, transparent)
}

.hamburger-box {
  display: inline-block;
  width: 26px;
  height: 18px;
  position: relative
}

.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  content: "";
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease)
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%)
}

.hamburger-inner:before {
  top: -8px
}

.hamburger-inner:after {
  top: 8px
}

.menu-open .site-header {
  background: color-mix(in srgb, #0b1220 80%, transparent);
  border-bottom: 1px solid color-mix(in oklab, #ffffff 12%, transparent);
  box-shadow: 0 8px 24px rgb(0 0 0 / 40%);
}

.site-header .header-cta {
  gap: .75rem
}

.site-header .btn {
  padding: .6rem .9rem;
  font-size: .95rem;
  line-height: 1;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.site-header .btn--lg {
  padding: .7rem 1rem;
  font-size: .98rem;
}

.site-header .btn .icon,
.site-header .btn i.lucide,
.site-header .btn svg {
  width: 18px;
  height: 18px;
}

.site-header .btn--whatsapp {
  box-shadow: var(--shadow-sm)
}

.site-header .btn--whatsapp:hover,
.site-header .btn--gradient:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.top-header__inner {
  padding: 0 var(--space-3, .75rem);
}

.header-wrap {
  min-height: var(--header-h);
}

.brand img {
  height: clamp(44px, 5vw, 60px);
}

.nav-list a {
  padding: .45rem .2rem;
}

.site-header.is-scrolled {
  backdrop-filter: saturate(1.05) blur(7px);
  box-shadow: 0 6px 18px rgb(0 0 0 / 32%);
}

.hero {
  position: relative;
  min-height: min(84vh, 820px);
  display: grid;
  place-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto
}

.hero__title {
  font-size: var(--fs-2xl);
  line-height: 1.05;
  letter-spacing: -.03em;
  padding-top: 20px;
  padding-bottom: 3px
}

.hero__subtitle {
  color: #fff;
  opacity: .95;
  font-size: var(--fs-lg);
  max-width: 60ch;
  margin: 0 auto var(--space-8)
}

.hero__kicker {
  color: #fff;
  opacity: .9;
  font-weight: 700;
  margin: 0 auto var(--space-6)
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center
}

.features {
  --feature-bg: #0a1833;
  --card-bg: #122650;
  --card-bg-hover: #173064;
  --ring: color-mix(in srgb, white 8%, transparent);
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--feature-bg);
  margin-top: clamp(1rem, 3vw, 2rem);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.8vw, 2rem);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--ring);
  border-radius: 20px;
  padding: clamp(1.25rem, 3.5vw, 1.75rem);
  color: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 35%);
  transform: translateZ(0) scale(1);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
  will-change: transform;
}

.feature-card:hover {
  transform: scale(1.025);
  box-shadow: 0 18px 50px rgb(0 0 0 / 45%);
  background: var(--card-bg-hover);
  border-color: color-mix(in srgb, white 16%, transparent);
}

.feature-card__badge {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  border: 1px solid color-mix(in srgb, white 14%, transparent);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 6%), 0 10px 20px rgb(0 0 0 / 35%);
  margin-bottom: 1rem;
}

.feature-card .icon,
.feature-card .lucide {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.feature-card__title {
  font-size: clamp(1.1rem, .9rem + 1vw, 1.35rem);
  line-height: 1.2;
  margin: .35rem 0 .5rem;
  letter-spacing: -.01em;
}

.feature-card__subtitle {
  color: color-mix(in srgb, #ffffff 88%, transparent);
  font-size: clamp(.95rem, .9rem + .2vw, 1rem);
  max-width: 38ch;
  margin-inline: auto;
}

.products {
  --bg: #000;
  --card: #0c0f16;
  --card-hover: #111521;
  --ring: color-mix(in srgb, white 10%, transparent);
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
  border-top: 1px solid color-mix(in srgb, white 7%, transparent);
}

.products__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem)
}

.products__head h2 {
  font-size: var(--fs-2xl)
}

.products__subtitle {
  color: color-mix(in srgb, #ffffff 85%, transparent);
  max-width: 62ch;
  margin: .5rem auto 0;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.product-card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 16px 40px rgb(0 0 0 / 45%);
  transform: translateZ(0) scale(1);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: scale(1.02);
  background: var(--card-hover);
  border-color: color-mix(in srgb, white 18%, transparent);
  box-shadow: 0 24px 56px rgb(0 0 0 / 55%);
}

.product-card__media {
  margin: 0;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #0a0a0a;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms var(--ease), filter 220ms var(--ease);
  filter: contrast(1.02) saturate(1.02);
}

.product-card:hover .product-card__media img {
  transform: scale(1.08)
}

.product-card__body {
  padding: clamp(1rem, 2.5vw, 1.4rem);
  text-align: center
}

.product-card__title {
  font-size: clamp(1.2rem, 1rem + .8vw, 1.5rem);
  margin: .25rem 0 .5rem;
  letter-spacing: -.01em;
}

.product-card__text {
  color: color-mix(in srgb, #ffffff 88%, transparent);
  margin: 0 auto 1.1rem;
  max-width: 56ch;
}

.btn--black {
  background: #0b0d12;
  color: #fff;
  border: 1px solid color-mix(in srgb, #ffffff 14%, transparent);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn--black:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.05) brightness(1.03);
}

.product-card__cta {
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(220px, 80%, 360px);
  padding: .7rem 2rem;
  font-size: 1.0625rem;
  gap: .65rem;
  border-radius: 999px;
}

.product-card__cta .icon,
.product-card__cta .lucide {
  width: 22px;
  height: 22px;
  transition: transform 200ms var(--ease);
}

.product-card__cta:hover .icon,
.product-card__cta:hover .lucide {
  transform: translateX(3px);
}

.reviews {
  --bg: #0a1833;
  --card: #122650;
  --ring: color-mix(in srgb, #ffffff 10%, transparent);
  background: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid color-mix(in srgb, #ffffff 8%, transparent);
}

.reviews__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem)
}

.reviews__head h2 {
  font-size: var(--fs-2xl)
}

.reviews__subtitle {
  color: color-mix(in srgb, #ffffff 88%, transparent);
  max-width: 62ch;
  margin: .5rem auto 0;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
}

.reviews__grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2rem);
  grid-template-columns: repeat(3, 1fr);
}

.r-card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.25rem);
  color: #fff;
  box-shadow: 0 14px 36px rgb(0 0 0 / 35%);
}

.r-card__top {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .75rem
}

.r-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: 0 0 44px;
  background: #0c1d42;
  border: 1px solid color-mix(in srgb, #ffffff 16%, transparent);
}

.r-card__who {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.r-card__name {
  font-weight: 800;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem)
}

.r-card__city {
  color: color-mix(in srgb, #ffffff 70%, transparent);
  font-size: .95rem;
  margin-top: .15rem
}

.reviews__stars {
  display: flex;
  gap: .25rem;
  margin: .35rem 0 .75rem
}

.reviews__stars .lucide,
.reviews__stars i {
  width: 20px;
  height: 20px;
  stroke: url(#reviewsGrad);
  stroke-width: 2.2;
  fill: none;
  color: transparent;
}

.r-card__text {
  color: color-mix(in srgb, #ffffff 90%, transparent);
  font-size: clamp(.98rem, .95rem + .2vw, 1.05rem);
}

.about {
  --bg: #000;
  --card: #0e1b39;
  --ring: color-mix(in srgb, #ffffff 10%, transparent);
  background: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem)
}

.about__head h2 {
  font-size: var(--fs-2xl)
}

.about__subtitle {
  color: color-mix(in srgb, #ffffff 86%, transparent);
  max-width: 70ch;
  margin: .6rem auto 0;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
}

.about__grid {
  display: grid;
  gap: clamp(8rem, 2.6vw, 2rem);
  grid-template-columns: repeat(3, 1fr);
}

.about-card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 18px;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 36px rgb(0 0 0 / 35%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgb(0 0 0 / 45%);
  border-color: color-mix(in srgb, #ffffff 18%, transparent);
}

.about-card__iconwrap {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, #7aa2ff 22%, transparent);
  border: 1px solid color-mix(in srgb, #ffffff 16%, transparent);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 6%), 0 10px 20px rgb(0 0 0 / 35%);
}

.about-card__icon {
  width: 28px;
  height: 28px
}

.about-card__num {
  font-weight: 900;
  font-size: clamp(2rem, 1.4rem + 3.8vw, 3.2rem);
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.about-card__text {
  color: color-mix(in srgb, #ffffff 90%, transparent);
  font-size: clamp(1rem, .95rem + .25vw, 1.1rem);
}

.differentials {
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(10, 20, 40, .75), transparent 60%),
    linear-gradient(180deg, #06090f, #0b1220 45%, #0b1220);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid color-mix(in srgb, #ffffff 7%, transparent);
  width: 100%;
}

.differentials__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem)
}

.differentials__head h2 {
  font-size: var(--fs-2xl)
}

.differentials__subtitle {
  color: color-mix(in srgb, #ffffff 88%, transparent);
  max-width: 64ch;
  margin: .6rem auto 0;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
}

.differentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
}

.diff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: #0e1b39;
  border-radius: 18px;
  color: #fff;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
  border: 1px solid color-mix(in srgb, #ffffff 10%, transparent);
  box-shadow: 0 14px 36px rgb(0 0 0 / 35%);
  transform: translateZ(0) scale(1);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), filter 220ms var(--ease);
}

.diff-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--color-blue) 35%, transparent),
    0 0 28px 6px color-mix(in srgb, var(--color-blue) 22%, transparent),
    0 0 52px 12px color-mix(in srgb, var(--color-pink) 16%, transparent);
  transition: opacity 220ms var(--ease), filter 220ms var(--ease);
}

.diff-card:hover {
  transform: scale(1.025);
  border-color: color-mix(in srgb, #ffffff 18%, transparent);
  box-shadow: 0 22px 54px rgb(0 0 0 / 45%);
}

.diff-card:hover::after {
  opacity: 1
}

.diff-card__iconwrap {
  position: relative;
  isolation: isolate;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  box-shadow: 0 10px 24px rgb(0 0 0 / 45%);
  margin-bottom: .85rem;
}

.diff-card__iconwrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: var(--gradient-primary);
  filter: blur(14px);
  opacity: .6;
  z-index: -1;
  transition: opacity var(--fast) var(--ease), filter var(--fast) var(--ease);
}

.diff-card:hover .diff-card__iconwrap::before {
  opacity: .9;
  filter: blur(18px);
}

.diff-card__icon {
  width: 28px;
  height: 28px;
  color: #fff
}

.diff-card__title {
  font-size: clamp(1.1rem, .95rem + .8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: .25rem 0 .4rem;
}

.diff-card__subtitle {
  color: color-mix(in srgb, #ffffff 86%, transparent);
  font-size: clamp(.98rem, .95rem + .25vw, 1.06rem);
  max-width: 48ch;
  margin-inline: auto;
}

.quote {
  --bg: transparent;
  --field-bg: transparent;
  --field-ring: color-mix(in srgb, var(--color-blue) 45%, transparent);
  --field-ring-soft: color-mix(in srgb, var(--color-blue) 25%, transparent);
  background: radial-gradient(900px 500px at 15% -10%, rgba(14, 27, 57, .65), transparent 60%), var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid color-mix(in srgb, #ffffff 8%, transparent);
}

.quote__head {
  text-align: center;
  margin-bottom: clamp(1.6rem, 4vw, 2.4rem)
}

.quote__head h2 {
  font-size: var(--fs-2xl)
}

.quote__subtitle {
  color: color-mix(in srgb, #ffffff 88%, transparent);
  max-width: 62ch;
  margin: .6rem auto 0;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
}

.quote__form {
  width: min(100%, 980px);
  margin-inline: auto
}

.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.4vw, 1.5rem);
}

.field {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.field--full {
  grid-column: 1 / -1
}

.field label {
  color: #fff;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: clamp(.98rem, .95rem + .2vw, 1.05rem);
}

.field input,
.field textarea {
  appearance: none;
  width: 100%;
  background: #0b0b0b;
  color: #fff;
  border: 1px solid var(--field-ring-soft);
  border-radius: 14px;
  padding: .8rem .9rem;
  font: inherit;
  line-height: 1.5;
  outline: none;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
  box-shadow: 0 6px 18px rgb(0 0 0 / 28%);
}

.field textarea {
  resize: vertical;
  min-height: 180px
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, #ffffff 55%, transparent)
}

.field input:focus,
.field textarea:focus {
  border-color: var(--field-ring);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--color-blue) 18%, transparent),
    0 10px 28px rgb(0 0 0 / 40%);
}

.checks {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .8rem;
  border: 1px solid var(--field-ring-soft);
  border-radius: 14px;
  background: #0b0b0b;
  box-shadow: 0 6px 18px rgb(0 0 0 / 28%);
  cursor: pointer;
  user-select: none;
}

.check input {
  appearance: auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-blue);
}

.check span {
  color: #fff;
  font-weight: 600;
}

.check:has(input:focus-visible) {
  border-color: var(--field-ring);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--color-blue) 18%, transparent),
    0 10px 28px rgb(0 0 0 / 40%);
}

.check:has(input:checked) {
  border-color: var(--field-ring);
  background: color-mix(in srgb, #0b0b0b 70%, var(--color-blue) 30%);
}

.quote__submit {
  width: 100%;
  padding: 1.1rem 1.25rem;
  font-size: 1.0625rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgb(0 0 0 / 40%);
}

.quote__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgb(0 0 0 / 46%);
  filter: saturate(1.05) brightness(1.03);
}

.blog-section {
  --ring: color-mix(in srgb, var(--text) 10%, transparent);
  padding-top: 2rem;
}

.blog-section .breadcrumbs {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto var(--space-6)
}

.blog__head {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.blog__head h2 {
  font-size: var(--fs-2xl)
}

.blog__subtitle {
  color: color-mix(in srgb, var(--text) 85%, transparent);
  max-width: 62ch;
  margin: .6rem auto 0;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
}

.blog-grid {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.blog-card {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border: 1px solid var(--ring);
  border-radius: 18px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0) scale(1);
  transition: transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    background var(--fast) var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: color-mix(in srgb, var(--text) 18%, transparent);
  box-shadow: var(--shadow-md);
}

.blog-media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0a0a;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms var(--ease), filter 220ms var(--ease);
  filter: contrast(1.02) saturate(1.02);
}

.blog-card:hover .blog-media img {
  transform: scale(1.08)
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: color-mix(in srgb, var(--text) 70%, transparent);
  font-size: var(--fs-sm);
  margin: var(--space-4) var(--space-5) 0;
}

.blog-meta i {
  width: 18px;
  height: 18px
}

.blog-card-title {
  font-size: clamp(1.15rem, 1rem + .9vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -.01em;
  font-weight: 800;
  margin: .35rem var(--space-5) 0;
}

.blog-card-desc {
  color: color-mix(in srgb, var(--text) 88%, transparent);
  margin: var(--space-3) var(--space-5) 0;
}

.blog-btn {
  align-self: flex-start;
  margin: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  text-decoration: none;
  padding: .7rem 1rem;
  line-height: 1.2;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  color: var(--text);
  position: relative;
  transition: transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    background var(--fast) var(--ease);
}

.blog-btn i {
  width: 20px;
  height: 20px;
  transition: transform var(--fast) var(--ease)
}

.blog-btn:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--link) 35%, transparent);
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.blog-btn:hover i {
  transform: translateX(3px)
}

.blog-btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-color: transparent;
}

.blog-pagination {
  width: min(100% - 2rem, var(--container));
  margin: var(--space-8) auto 0;
  margin-bottom: 0;
}

.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.blog-extra {
  margin-top: 0
}

.blog-extra+.blog-extra {
  margin-top: 0
}

.blog-section .blog-extra:last-child {
  margin-bottom: 0
}

.blog-extra>.container,
.blog-extra>.container-slim {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.coverage {
  --bg: #02050c;
  background: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid color-mix(in srgb, #ffffff 7%, transparent);
}

.coverage__head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem)
}

.coverage__head h2 {
  font-size: var(--fs-2xl)
}

.coverage__subtitle {
  margin: .6rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: color-mix(in srgb, #ffffff 88%, transparent);
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
}

.coverage__subtitle .icon,
.coverage__subtitle .lucide {
  width: 20px;
  height: 20px;
}

.coverage__map {
  margin: clamp(1.25rem, 3.2vw, 1.75rem) auto;
  width: min(100%, 1100px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgb(0 0 0 / 45%);
  border: 1px solid color-mix(in srgb, #ffffff 10%, transparent);
  background: #0a0a0a;
  aspect-ratio: 16 / 9;
}

.coverage__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.coverage__foot {
  text-align: center;
  color: color-mix(in srgb, #ffffff 88%, transparent);
  max-width: 72ch;
  margin: 0 auto;
  font-size: clamp(1rem, .95rem + .2vw, 1.0625rem);
}

.site-footer {
  --bg: #0e1b39;
  --ring: color-mix(in srgb, #ffffff 10%, transparent);
  background: var(--bg);
  color: #fff;
  padding-top: 30px;
  border-top: 1px solid var(--ring);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: flex-start;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.footer__brand img {
  height: clamp(40px, 6vw, 64px);
  width: auto;
  display: block;
}

.footer__desc {
  color: color-mix(in srgb, #ffffff 85%, transparent);
  max-width: 20ch;
}

.footer__social {
  display: flex;
  gap: .6rem;
  margin-top: .25rem
}

.footer__social-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border: 1px solid var(--ring);
  color: #fff;
  text-decoration: none;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
}

.footer__social-btn:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
  box-shadow: 0 12px 28px rgb(0 0 0 / 45%);
}

.footer__social .icon,
.footer__social .lucide {
  width: 20px;
  height: 20px
}

.footer__title {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: .25rem;
}

.footer__links,
.footer__contact,
.footer__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__links a {
  color: color-mix(in srgb, #ffffff 88%, transparent);
  text-decoration: none;
  font-weight: 400;
  transition: color var(--fast) var(--ease), text-shadow var(--fast) var(--ease);
}

.footer__links a:hover {
  color: #fff;
  text-shadow: 0 0 1px #fff;
}

.footer__contact li {
  margin: 0;
}

.footer__contact a.footer__contact-link {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .6rem;
  align-items: start;
  color: color-mix(in srgb, #ffffff 88%, transparent);
  text-decoration: none;
  font-weight: 400;
  transition: color var(--fast) var(--ease), text-shadow var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.footer__contact a.footer__contact-link:hover {
  color: #fff;
  text-shadow: 0 0 1px #fff;
  transform: translateY(-1px);
}

.footer__contact a.footer__contact-link:focus-visible {
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-blue) 30%, transparent);
}

.footer__contact .icon,
.footer__contact .lucide {
  width: 20px;
  height: 20px;
}

.footer__hours li {
  color: color-mix(in srgb, #ffffff 88%, transparent);
}


.footer__divider {
  height: 1px;
  width: 100%;
  background: color-mix(in srgb, #ffffff 12%, transparent);
  margin: clamp(1.4rem, 3vw, 2rem) 0 clamp(1rem, 2.2vw, 1.4rem);
}

.footer__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  color: color-mix(in srgb, #ffffff 80%, transparent);
  font-size: clamp(.95rem, .9rem + .2vw, 1rem);
  padding-bottom: 60px;
}

.footer__copy-left {
  margin: 0;
  text-align: left;
  line-height: 1.35;
}

.footer__copy-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer__pura-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer__pura-logo {
  height: 34px;
  width: auto;
  display: block;
  animation: footerBlink 1.1s infinite;
  transform-origin: center;
  cursor: pointer;
  margin-right: 40px;
}

@keyframes footerBlink {
  0%, 100% { opacity: 1; filter: none; transform: scale(1.1); }
  50% { opacity: .25; filter: brightness(1.2); transform: scale(1.02); }
}

.footer__pura-link:focus-visible {
  outline: 2px solid color-mix(in srgb, #ffffff 70%, transparent);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Responsivo: empilha no mobile */
@media (max-width: 640px) {
  .footer__copy {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
  }

  .footer__copy-left {
    text-align: center;
  }

  .footer__pura-logo {
    height: 32px;
    margin: 0;
  }
}

.footer__about {
  padding: clamp(1rem, 2.2vw, 1.5rem) 0;
  text-align: center;
}

.footer__about p {
  margin: 0 auto;
  color: color-mix(in srgb, #ffffff 82%, transparent);
  font-size: clamp(.98rem, .95rem + .25vw, 1.08rem);
  line-height: 1.7;
  max-width: 80ch;
}

.footer-products {
  margin-top: 1.75rem;
}

.footer-products.is-empty {
  display: none;
}

.footer-products__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  text-align: center;
}

.footer-products__title {
  margin: 0;
  font-size: 2rem;
}

.footer-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem 2rem;
}

.footer-products__col {
  font-size: 0.9rem;
}

.footer-products__cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.96);
}

.footer-products__cat-link:hover,
.footer-products__cat-link:focus-visible {
  text-decoration: underline;
}

.footer-products__list {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.footer-products__list-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.9);
}

.footer-products__list-item a::before {
  content: "•";
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-products__list-item a:hover,
.footer-products__list-item a:focus-visible {
  color: #e5e7eb;
}

.footer-products__empty {
  display: inline-block;
  font-size: 0.84rem;
  color: rgba(148, 163, 184, 0.95);
  font-style: italic;
}

.float-whatsapp {
  position: fixed;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  z-index: 120;

  width: 64px;
  height: 64px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: #0b0d12;
  border: 1px solid color-mix(in srgb, #ffffff 18%, transparent);
  box-shadow: 0 14px 32px rgb(0 0 0 / 45%);

  overflow: hidden;
  -webkit-tap-highlight-color: transparent;

  transition: transform var(--fast) var(--ease),
              box-shadow var(--fast) var(--ease),
              border-color var(--fast) var(--ease);
}

.float-whatsapp img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.float-whatsapp:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 42px rgb(0 0 0 / 55%);
  border-color: transparent;
}

.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--fast) var(--ease);
  z-index: -1;
}

.float-whatsapp:hover::before {
  opacity: 1;
}

@media (max-width: 1024px) {
  .float-whatsapp {
    display: none !important;
  }
}

.wpp-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 9999;
  display: none; 

  width: 100%;
  min-height: 64px;

  background: var(--color-green);
  color: #fff;
  text-decoration: none;

  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.18);
  -webkit-tap-highlight-color: transparent;

}

.wpp-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
}

.wpp-bar__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  display: block;

  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.wpp-bar__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  align-items: center;
}

.wpp-bar__title {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.wpp-bar__subtitle {
  font-size: 12px;
  opacity: 0.92;
  margin-top: 4px;
}

.wpp-bar:hover {
  filter: brightness(1.05);
}

.wpp-bar:active {
  transform: translateY(1px);
}

.wpp-bar:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: -3px;
}

@media (max-width: 1024px) {
  .wpp-bar { display: block; }
}

@media (max-width: 480px) {
  .wpp-bar__inner { padding: 12px 14px; }
  .wpp-bar__title { font-size: 15px; }
  .wpp-bar__subtitle { font-size: 11px; }
}

.wpp-lead {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.wpp-lead[aria-hidden="false"] {
  display: block;
}

.wpp-lead__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wpp-lead__panel {
  position: absolute;
  right: clamp(12px, 2vw, 20px);
  bottom: clamp(12px, 2vw, 20px);
  width: min(420px, calc(100vw - 24px));
  border: 1px solid color-mix(in srgb, #ffffff 10%, transparent);
  background: color-mix(in srgb, #0b1220 88%, #000 12%);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgb(0 0 0 / 55%);
  padding: 1rem;
}

.wpp-lead__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .35rem;
}

.wpp-lead__title {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.01em;
}

.wpp-lead__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: .35rem;
  border-radius: 10px;
}

.wpp-lead__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-blue) 30%, transparent);
}

.wpp-lead__desc {
  margin: 0 0 .9rem;
  color: color-mix(in srgb, #ffffff 80%, transparent);
  font-size: .95rem;
}

.wpp-lead__grid {
  display: grid;
  gap: .75rem;
}

.wpp-lead__field {
  display: grid;
  gap: .4rem;
}

.wpp-lead__field>span,
.wpp-lead__field legend {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}

.wpp-lead__field input {
  width: 100%;
  background: #0b0b0b;
  color: #fff;
  border: 1px solid color-mix(in srgb, var(--color-blue) 25%, transparent);
  border-radius: 14px;
  padding: .7rem .85rem;
  font: inherit;
  outline: none;
  box-shadow: 0 6px 18px rgb(0 0 0 / 28%);
}

.wpp-lead__field input:focus {
  border-color: color-mix(in srgb, var(--color-blue) 45%, transparent);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--color-blue) 18%, transparent),
    0 10px 28px rgb(0 0 0 / 40%);
}

.wpp-lead__field--full {
  grid-column: 1 / -1;
}

.wpp-lead__checks {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.wpp-lead__check {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .75rem;
  border: 1px solid color-mix(in srgb, var(--color-blue) 25%, transparent);
  border-radius: 14px;
  background: #0b0b0b;
  box-shadow: 0 6px 18px rgb(0 0 0 / 28%);
  cursor: pointer;
  user-select: none;
}

.wpp-lead__check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-blue);
}

.wpp-lead__check span {
  color: #fff;
  font-weight: 600;
}

.wpp-lead__submit {
  width: 100%;
  padding: .95rem 1rem;
  border-radius: 14px;
  font-size: 1.5rem;
}

.wpp-lead__hint {
  margin: -.15rem 0 0;
  font-size: .85rem;
  color: color-mix(in srgb, #ffffff 70%, transparent);
}

.hero--servicos {
  position: relative;
  min-height: min(84vh, 820px);
  padding-top: 80px;
  display: grid;
  place-items: center;
  text-align: center;
  margin-bottom: 3rem
}

.hero--servicos__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto
}

.hero--servicos__title {
  font-size: var(--fs-2xl);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: var(--space-8)
}

.hero--servicos__subtitle {
  color: #fff;
  opacity: .95;
  font-size: var(--fs-lg);
  max-width: 60ch;
  margin: 0 auto var(--space-8)
}

.hero--servicos .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center
}

.servicos-info {
  background-color: #000;
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.servicos-info__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
}

.servicos-info__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.servicos-info__col {
  width: 100%;
  color: #fff;
}

.servicos-info__title {
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6, 1.25rem);
}

.servicos-info__text {
  display: grid;
  gap: 1rem;
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.1875rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.is-collapsible {
  --lines: 8;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: clamp(250px, 30vw, 450px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0));
}

.is-collapsible.is-expanded {
  max-height: none;
  mask-image: none;
}

.readmore {
  margin-top: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.readmore .icon {
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
}

.readmore[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.readmore:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-1px);
}

.servicos-info__figure {
  margin: 0;
}

.servicos-info__img {
  width: 100%;
  height: clamp(280px, 40vw, 500px);
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  background-color: #0a0a0a;
}

.faq {
  background: #000;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.faq__inner {
  max-width: var(--max-w, 900px);
  margin-inline: auto;
  padding-inline: 1rem;
  color: #fff;
}

.faq__title {
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-align: center;
}

.faq__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, .9rem + .6vw, 1.125rem);
  margin: .75rem auto 2rem;
  max-width: 70ch;
}

.faq__list {
  display: grid;
  gap: .75rem;
}

.faq__item {
  border: 1px solid rgba(88, 130, 255, .18);
  border-radius: 14px;
  background: linear-gradient(180deg, #0b1530, #0a1331);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .04);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.faq__item.is-open {
  border-color: rgba(88, 130, 255, .32);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: #fff;
  padding: 1rem 1.1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: clamp(1rem, .95rem + .4vw, 1.125rem);
  font-weight: 700;
}

.faq__question .icon {
  width: 20px;
  height: 20px;
  transition: transform .22s ease;
  flex-shrink: 0;
}

.faq__question[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 1.1rem;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(.9875rem, .95rem + .25vw, 1.0625rem);
  line-height: 1.75;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height .35s ease,
    opacity .25s ease,
    transform .25s ease,
    padding-bottom .25s ease;
}

.faq__item.is-open .faq__answer {
  padding-bottom: 1rem;
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
}

.more-services {
  background: #000;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.more-services__inner {
  max-width: 1360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #fff;
  box-sizing: border-box;
}

.more-services__title {
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-align: center;
}

.more-services__subtitle {
  text-align: center;
  color: color-mix(in srgb, #ffffff 85%, transparent);
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  margin: .75rem auto 2rem;
  max-width: 62ch;
}

.more-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
  max-width: 1328px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  background: #000;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}

.cta__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
  color: #fff;
}

.cta__title {
  font-size: clamp(2rem, 1.4rem + 3.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.cta__subtitle {
  margin: .75rem auto 1.5rem;
  max-width: 70ch;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, .9rem + .6vw, 1.125rem);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

.cta__note {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.cta__note .icon {
  width: 20px;
  height: 20px;
}

.hero--sobre {
  position: relative;
  min-height: min(70vh, 720px);
  padding-top: 80px;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero--sobre__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.hero--sobre__title {
  font-size: var(--fs-2xl);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: var(--space-8, 1.25rem);
}

.hero--sobre__subtitle {
  color: #fff;
  opacity: .95;
  font-size: var(--fs-lg, clamp(1.05rem, .9rem + 1vw, 1.25rem));
  max-width: 70ch;
  margin: 0 auto;
}

.about-history {
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(2, 6, 23, .55), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, .65), rgba(2, 6, 23, .35) 40%, rgba(2, 6, 23, .7)),
    url("/images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: #fff;
}

.about-history__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
}

.about-history__title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.about-history__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.about-history__text {
  display: grid;
  gap: 1rem;
  font-size: clamp(1.02rem, 1rem + .3vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, .92);
}

.about-history__figure {
  margin: 0;
}

.about-history__img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  display: block;
  object-fit: cover;
  border-radius: 16px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .02) inset;
}

.about-history__gallery-title {
  text-align: center;
  font-size: clamp(1.4rem, 1.1rem + 2vw, 2rem);
  letter-spacing: -0.01em;
  margin: clamp(1rem, 2vw, 1.5rem) 0 clamp(1rem, 2vw, 1.25rem);
}

.about-history__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 2vw, 1rem);
}

.about-history__thumb {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .5);
}

.about-history__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.about-history__thumb:hover img {
  transform: scale(1.06);
}

.about-cta-blue {
  --blue-bg: #040813;
  background: var(--blue-bg);
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: #fff;
}

.about-cta-blue__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}

.about-cta-blue__title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.about-cta-blue__subtitle {
  margin: .75rem auto 1.5rem;
  max-width: 70ch;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, .9rem + .6vw, 1.125rem);
}

.about-cta-blue__figure {
  margin: 0;
}

.about-cta-blue__img {
  width: 100%;
  height: clamp(280px, 48vw, 560px);
  display: block;
  object-fit: cover;
  border-radius: 18px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .03) inset;
}

.about-cta-blue {
  --blue-bg: #0b1530;
  --blue-card: #10224d;
  --blue-icon-bg: #0e1d44;
  --blue-icon-fg: #8fb3ff;
  background: var(--blue-bg);
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: #fff;
}

.about-cta-blue__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}

.about-cta-blue__title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.about-cta-blue__subtitle {
  margin: .75rem auto 1.5rem;
  max-width: 70ch;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, .9rem + .6vw, 1.125rem);
}

.about-cta-blue__figure {
  margin: 0;
}

.about-cta-blue__img {
  width: 100%;
  height: clamp(280px, 48vw, 560px);
  display: block;
  object-fit: cover;
  border-radius: 18px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .03) inset;
}

.about-cta-blue__features {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  text-align: left;
}

.feature-card {
  background: var(--blue-card);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .5);
}

.feature-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}

.feature-card__iconwrap {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-icon-bg);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  flex-shrink: 0;
}

.feature-card__iconwrap .icon {
  width: 22px;
  height: 22px;
  color: var(--blue-icon-fg);
}

.feature-card__title {
  font-size: clamp(1.05rem, 1rem + .6vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
}

.feature-card__text {
  margin-top: .25rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
  font-size: clamp(.98rem, .95rem + .3vw, 1.0625rem);
}

.events-types {
  background: #000;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: #fff;
}

.events-types__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
}

.events-types__title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.events-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.event-card {
  background: #0c0f16;
  border: 1px solid color-mix(in srgb, #ffffff 10%, transparent);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, #ffffff 18%, transparent);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .55);
}

.event-card__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0a;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease, filter .25s ease;
  filter: contrast(1.04) saturate(1.03);
}

.event-card:hover .event-card__media img {
  transform: scale(1.07);
}

.event-card__body {
  padding: clamp(1rem, 2.2vw, 1.4rem);
  display: grid;
  gap: .45rem;
}

.event-card__title {
  font-size: clamp(1.1rem, 1rem + .7vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
}

.event-card__text {
  color: color-mix(in srgb, #ffffff 88%, transparent);
  font-size: .9875rem;
  line-height: 1.65;
}

.about-experience {
  --blue-bg: #0b1530;
  --blue-card: #10224d;
  --blue-card-2: #0e1d44;
  --blue-fg: #8fb3ff;
  background: var(--blue-bg);
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: #fff;
}

.about-experience__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
}

.about-experience__title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.about-experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.tcard {
  background: var(--blue-card);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  display: grid;
  gap: .6rem;
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}

.tcard:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .5);
}

.tcard__stars {
  display: inline-flex;
  gap: .25rem;
  color: var(--blue-fg);
}

.tcard__stars .icon {
  width: 18px;
  height: 18px;
}

.tcard__text {
  color: rgba(255, 255, 255, .92);
  line-height: 1.7;
  font-size: clamp(.98rem, .95rem + .3vw, 1.0625rem);
}

.tcard__person {
  display: grid;
  gap: .15rem;
}

.tcard__name {
  font-weight: 800;
  letter-spacing: -.01em;
}

.tcard__place {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
}

.cases__title {
  text-align: center;
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.2rem);
  margin: clamp(1rem, 2.5vw, 1.5rem) 0;
}

.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.case-card {
  background: var(--blue-card-2);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .5);
  display: grid;
  grid-template-rows: auto 1fr;
}

.case-card__media {
  margin: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0a0a;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .4s ease;
  filter: contrast(1.04) saturate(1.03);
}

.case-card:hover .case-card__media img {
  transform: scale(1.06);
}

.case-card__body {
  padding: clamp(1rem, 2.2vw, 1.4rem);
  display: grid;
  gap: .7rem;
}

.case-card__heading {
  font-size: clamp(1.15rem, 1rem + .9vw, 1.5rem);
  letter-spacing: -.01em;
}

.case-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}

.case-card__tag {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--blue-fg);
  margin-bottom: .15rem;
}

.case-card__text {
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
  font-size: clamp(.98rem, .95rem + .3vw, 1.0625rem);
}

.process {
  background: #000;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: #fff;
}

.process__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}

.process__title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -.02em;
}

.process__subtitle {
  margin: .75rem auto 1.75rem;
  max-width: 70ch;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, .9rem + .6vw, 1.125rem);
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  text-align: center;
}

.step {
  display: grid;
  gap: .6rem;
  justify-items: center;
}

.step__circle {
  --g: var(--gradient-primary, linear-gradient(135deg, #60a5fa 0%, #7c3aed 50%, #f472b6 100%));
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: var(--g);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .16);
}

.step__num {
  font-weight: 900;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: .02em;
}

.step__title {
  font-size: clamp(1rem, .95rem + .5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -.01em;
}

.step__text {
  color: rgba(255, 255, 255, .9);
  font-size: .9875rem;
  line-height: 1.6;
  max-width: 26ch;
}

.process__note {
  width: min(100%, 38ch);
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
  padding: 1rem 1.1rem;
  display: block;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  position: relative;
}

.process__note::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(124, 58, 237, .16), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.process__note p {
  margin: 0;
  font-size: clamp(.98rem, .95rem + .3vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .95);
}

.about-mvv {
  --blue-bg: #0b1530;
  --blue-card: #10224d;
  --blue-icon-bg: #0e1d44;
  --blue-icon-fg: #8fb3ff;
  background: var(--blue-bg);
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: #fff;
}

.about-mvv__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}

.about-mvv__title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.about-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.mvv-card {
  background: var(--blue-card);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  display: grid;
  justify-items: center;
  gap: .7rem;
  text-align: center;
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}

.mvv-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .5);
}

.mvv-card__iconwrap {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-icon-bg);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.mvv-card__iconwrap .icon {
  width: 26px;
  height: 26px;
  color: var(--blue-icon-fg);
}

.mvv-card__title {
  font-size: clamp(1.05rem, 1rem + .6vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -.01em;
}

.mvv-card__text {
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
  font-size: clamp(.98rem, .95rem + .3vw, 1.0625rem);
  max-width: 46ch;
}

.final-cta {
  background: #000;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: #fff;
}

.final-cta__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}

.final-cta__title {
  color: #fff;
  font-size: clamp(2rem, 1.4rem + 3.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.final-cta__subtitle {
  margin: .75rem auto 1.5rem;
  max-width: 72ch;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, .9rem + .6vw, 1.125rem);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

.hero--contato {
  position: relative;
  min-height: min(64vh, 700px);
  margin-top: 40px;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero--contato__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.hero--contato__title {
  font-size: var(--fs-2xl);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: var(--space-6, 1rem);
}

.hero--contato__subtitle {
  color: #fff;
  opacity: .95;
  font-size: var(--fs-lg, clamp(1.05rem, .9rem + 1vw, 1.25rem));
  max-width: 70ch;
  margin: 0 auto;
}

.contact {
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(2, 6, 23, .55), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, .65), rgba(2, 6, 23, .35) 40%, rgba(2, 6, 23, .7)),
    url("/images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.contact__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.contact-info,
.contact-form {
  position: relative;
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  background: rgba(2, 6, 23, .58);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .04) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-info__title {
  font-size: clamp(1.4rem, 1rem + 2vw, 1.9rem);
  margin-bottom: .9rem;
  letter-spacing: -.01em;
}

.info-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(.9rem, 2vw, 1.1rem);
}

.info-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: center;
}

.info-card__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  flex-shrink: 0;
}

.info-card__icon i {
  width: 22px;
  height: 22px;
  color: #fff
}

.info-card__title {
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 1.05rem;
}

.info-card__subtitle {
  color: rgba(255, 255, 255, .92);
  font-size: .97rem;
  margin-top: .15rem;
}

.info-card__text {
  color: rgba(255, 255, 255, .86);
  line-height: 1.6;
  font-size: .98rem;
}

.info-card__actions .btn {
  margin-top: .2rem
}

.contact-form .container--slim {
  max-width: 100%;
  padding: 0;
}


.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, .28)
}

.field--full {
  grid-column: 1 / -1
}

.location {
  --ring: rgba(255, 255, 255, .12);
  --pill: rgba(255, 255, 255, .08);
  --fg: #fff;
  --fg-soft: rgba(255, 255, 255, .88);
  --blue-1: #0b1530;
  --blue-2: #0e1d44;
  --grad-1: #60a5fa;
  --grad-2: #7c3aed;
  --grad-3: #f472b6;

  background: #000 radial-gradient(1200px 700px at 15% -10%, rgba(124, 58, 237, .18), transparent 60%) no-repeat;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  color: var(--fg);
}

.location__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
}

.location__head {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.location__badge {
  display: inline-block;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: var(--pill);
  border: 1px solid var(--ring);
  color: var(--fg);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
}

.location__title {
  margin: .6rem 0 .35rem;
  font-size: clamp(1.9rem, 1.4rem + 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.location__title-gradient {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2) 50%, var(--grad-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.location__subtitle {
  color: var(--fg-soft);
  font-size: clamp(1rem, .95rem + .5vw, 1.125rem);
  max-width: 72ch;
  margin: 0 auto;
}

.location__map {
  margin-top: clamp(1rem, 3vw, 1.5rem);
}

.map-embed {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--ring);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .04);
  isolation: isolate;
}

.map-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.map-embed {
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.05) contrast(1.02);
}

.map-embed:focus-within {
  outline: 2px solid transparent;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, .6),
    0 0 0 1px rgba(255, 255, 255, .08) inset,
    0 0 0 6px rgba(124, 58, 237, .25);
}

.category {
  padding-top: 2rem;
  color: #fff;
}

.category__inner {
  max-width: var(--max-w, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}

.category__title {
  font-size: clamp(2.4rem, 1.6rem + 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 900;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .45);
  margin-bottom: .5rem;
}

.category__subtitle {
  margin: .75rem auto 0;
  max-width: 72ch;
  font-size: clamp(1.05rem, .95rem + .8vw, 1.35rem);
  color: rgba(255, 255, 255, .95);
  line-height: 1.75;
  font-weight: 600;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .35);
}

.cat-cards {
  padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.cat-cards__inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.cat-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "prev viewport next";
  align-items: center;
  gap: .5rem;
}

.cat-carousel__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--text) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  transition:
    transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    background var(--fast) var(--ease),
    border-color var(--fast) var(--ease);
}

.cat-carousel__btn.is-prev {
  grid-area: prev;
}

.cat-carousel__btn.is-next {
  grid-area: next;
}

.cat-carousel__btn:hover {
  transform: translateY(-1px);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.cat-carousel__btn[aria-disabled="true"] {
  opacity: .5;
  pointer-events: none;
}

.cat-carousel__btn i {
  width: 22px;
  height: 22px;
  color: #fff;
}

.cat-carousel__viewport {
  grid-area: viewport;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cat-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.cat-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: clamp(.9rem, 2.2vw, 1.25rem);
  padding: .25rem 0 .5rem;
  align-items: stretch;
}

.cat-cards__grid>.service-card {
  scroll-snap-align: start;
}

.service-card {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.service-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--text) 18%, transparent);
  box-shadow: var(--shadow-md)
}

.service-card:has(.service-card__link:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-color: transparent;
}

.service-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0a0a
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms var(--ease), filter 220ms var(--ease);
  filter: contrast(1.02) saturate(1.02);
}

.service-card:hover .service-card__media img,
.service-card__link:hover .service-card__media img {
  transform: scale(1.06)
}

.service-card__body {
  padding: .9rem 1rem 1.1rem;
  display: grid;
  gap: .5rem
}

.service-card__title {
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: clamp(1.05rem, 1rem + .6vw, 1.25rem)
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700
}

.service-card__cta-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--fast) var(--ease)
}

.service-card__link:hover .service-card__cta-icon {
  transform: translateX(3px)
}

.c-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32vw, 360px);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: .25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.c-track::-webkit-scrollbar {
  height: 8px
}

.c-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
  border-radius: 8px
}

.c-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .08);
  border-radius: 8px
}

.c-card {
  background: rgba(12, 15, 22, .9);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-snap-align: center;
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease, background .2s ease;
  backdrop-filter: blur(3px);
}

.c-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(12, 15, 22, .96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .55);
}

.c-card__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
  overflow: hidden;
}

.c-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .4s ease, filter .25s ease;
  filter: contrast(1.04) saturate(1.03);
}

.c-card:hover .c-card__media img {
  transform: scale(1.07)
}

.c-card__body {
  padding: clamp(1rem, 2.2vw, 1.3rem);
  display: grid;
  gap: .65rem;
  text-align: left;
}

.c-card__title {
  font-size: clamp(1.1rem, 1rem + .8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -.01em;
}

.c-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.c-card__cta .icon {
  width: 18px;
  height: 18px;
  transition: transform .15s ease;
}

.c-card__cta:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .32);
  transform: translateY(-1px);
}

.c-card__cta:hover .icon {
  transform: translateX(3px)
}

.c-card:focus-within,
.c-card:focus {
  outline: 2px solid transparent;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, .6),
    0 0 0 1px rgba(255, 255, 255, .1) inset,
    0 0 0 6px rgba(124, 58, 237, .28);
}

.section-header {
  background: color-mix(in srgb, var(--bg-soft) 88%, black 12%);
  border-bottom: 1px solid rgb(255 255 255 / 6%);
  padding-block: clamp(var(--space-6), 3vw, var(--space-12));
}

.section-header--soft {
  background:
    radial-gradient(1200px 600px at 0% 0%, color-mix(in srgb, var(--color-blue) 20%, transparent 80%) 0%, transparent 60%),
    radial-gradient(1000px 500px at 100% 0%, color-mix(in srgb, var(--color-pink) 16%, transparent 84%) 0%, transparent 70%),
    var(--bg);
}

.section-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.breadcrumbs {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-block-end: var(--space-3);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: .5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--link);
  text-underline-offset: 2px;
}

.breadcrumbs li::after {
  content: "/";
  margin-inline: .5rem;
  color: rgb(255 255 255 / 22%);
}

.breadcrumbs li[aria-current="page"]::after {
  content: "";
}

.section-header__title {
  font-size: var(--fs-2xl);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text);
  margin: 0 0 var(--space-2);
  text-shadow: 0 1px 0 rgb(0 0 0 / 25%);
}

.section-header__desc {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0;
}

.list-section {
  padding-block: clamp(var(--space-8), 4vw, var(--space-12));
}

.list-section .container-slim {
  max-width: min(880px, 92vw);
  margin: var(--space-6) auto 0;
  padding-inline: var(--space-4);
}

.cards-grid {
  --cols: 1;
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.list-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 2%));
  border: 1px solid rgb(255 255 255 / 8%);
  box-shadow: var(--shadow-sm);
  overflow: clip;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), border-color var(--fast) var(--ease);
}

.list-card:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.list-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgb(255 255 255 / 14%);
}

.list-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 50% 20%, rgb(255 255 255 / 6%), transparent 70%),
    color-mix(in srgb, var(--bg-soft) 86%, black 14%);
}

.list-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgb(0 0 0 / 20%) 100%);
  opacity: .6;
  transition: opacity var(--normal) var(--ease);
  pointer-events: none;
}

.list-card:hover .list-card__media::after {
  opacity: .35;
}

.list-card__media>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
  transition: transform var(--normal) var(--ease), filter var(--normal) var(--ease);
}

.list-card:hover .list-card__media>img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.06);
}

.list-card__body {
  display: grid;
  align-content: start;
  gap: .4rem;
  padding: var(--space-5);
  color: var(--text);
}

.list-card__title {
  font-size: clamp(1.05rem, .95rem + .6vw, 1.25rem);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -.01em;
}

.list-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--link);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  margin-top: .25rem;
}

.list-card__icon {
  inline-size: 1.05em;
  block-size: 1.05em;
  translate: 0 1px;
  transition: transform var(--fast) var(--ease);
}

.list-card:hover .list-card__icon {
  transform: translateX(2px) translateY(1px);
}

.list-section--servicos .list-card__cta {
  color: color-mix(in srgb, var(--cta) 80%, white 20%);
}

.empty {
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed rgb(255 255 255 / 20%);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  max-width: 760px;
  margin: var(--space-8) auto;
  background: color-mix(in srgb, var(--bg-soft) 85%, black 15%);
}

.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-block: var(--space-6);
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding-top: var(--space-5);
}

.pager__link,
.pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-inline-size: 40px;
  height: 40px;
  padding-inline: .85rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 12%);
  background: linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(255 255 255 / 3%));
  color: var(--text);
  text-decoration: none;
  font-size: var(--fs-sm);
  box-shadow: 0 1px 0 rgb(255 255 255 / 8%) inset;
  transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.pager__link:hover,
.pager__num:hover {
  background: linear-gradient(180deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 5%));
  border-color: rgb(255 255 255 / 18%);
  transform: translateY(-1px);
}

.pager__link.is-disabled {
  opacity: .5;
  pointer-events: none;
}

.pager__num.is-active {
  color: white;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 6%)),
    var(--gradient-primary);
  border-color: color-mix(in srgb, var(--color-blue) 50%, black 50%);
  box-shadow: var(--shadow-sm);
}

.pager__nums {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.pager__dots {
  color: var(--text-muted);
  padding-inline: .25rem;
}

.list-card,
.pager__link,
.pager__num {
  will-change: transform, box-shadow, border-color;
}

.cards-grid .service-card {
  height: 100%;
}

.list-card__ribbon {
  position: absolute;
  inset-inline-end: .5rem;
  inset-block-start: .5rem;
  background: color-mix(in srgb, var(--brand) 85%, black 15%);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: 999px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 35%);
  z-index: 1;
}

.list-page {
  --ring: color-mix(in srgb, var(--text) 10%, transparent);
  padding: 20px 10px 0 10px;
  z-index: 999;
}

.list-head {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.list-head__title {
  font-size: var(--fs-2xl);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.cards-grid {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.list-card {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border: 1px solid var(--ring);
  border-radius: 18px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0) scale(1);
  transition: transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    background var(--fast) var(--ease);
  display: flex;
  flex-direction: column;
}

.list-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: color-mix(in srgb, var(--text) 18%, transparent);
  box-shadow: var(--shadow-md);
}

.list-card--with-media .list-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0a0a;
}

.list-card--with-media .list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms var(--ease), filter 220ms var(--ease);
  filter: contrast(1.02) saturate(1.02);
}

.list-card--with-media:hover .list-card__media img {
  transform: scale(1.08)
}

.list-card--with-media .list-card__body {
  padding: clamp(1rem, 2.5vw, 1.4rem);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.list-card--compact {
  padding: clamp(1rem, 2.5vw, 1.4rem);
  gap: .9rem;
  min-height: 150px;
}

.list-card__title {
  font-size: clamp(1.1rem, .95rem + .8vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -.01em;
  font-weight: 800;
  margin: 0;
}

.list-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  text-decoration: none;
  padding: .7rem 1rem;
  line-height: 1.2;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  color: var(--text);
  transition: transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    background var(--fast) var(--ease);
}

.list-card__btn i {
  width: 20px;
  height: 20px;
  transition: transform var(--fast) var(--ease)
}

.list-card__btn:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--link) 35%, transparent);
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.list-card__btn:hover i {
  transform: translateX(3px)
}

.list-card__btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-color: transparent;
}

.container-slim {
  width: min(100% - 2rem, var(--container));
  margin: var(--space-8) auto 0;
}

.detail-crumbs {
  --ring: color-mix(in srgb, var(--text) 12%, transparent);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
  position: relative;
  z-index: 1;
}

.detail-crumbs__inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: 0.5rem 0;
  height: 40px;
}

.detail-crumbs__trail {
  color: color-mix(in srgb, var(--text) 78%, transparent);
  font-size: var(--fs-sm)
}

.detail-crumbs__trail a {
  color: var(--link);
  text-decoration: none
}

.detail-crumbs__trail a:hover {
  filter: brightness(1.1)
}

.detail-hero {
  padding: clamp(2.5rem, 5.5vw, 4rem) 0;
}

.detail-hero__inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "title  title"
    "desc   media";
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: start;
}

.detail-hero__inner>div {
  display: contents
}

.detail-hero__title {
  grid-area: title;
  text-align: center;
  font-size: var(--fs-2xl);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 .75rem;
}

.detail-hero__desc {
  grid-area: desc;
  color: color-mix(in srgb, var(--text) 88%, transparent);
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  display: grid;
  gap: .75rem;
}

.detail-hero__desc p {
  margin: 0
}

.detail-hero__media {
  grid-area: media;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0d12;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  box-shadow: var(--shadow-md);
  align-self: stretch;
  display: block;
  aspect-ratio: 5/4;
}

.detail-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms var(--ease), filter 220ms var(--ease);
  filter: contrast(1.02) saturate(1.02);
}

.detail-hero__media:hover .detail-hero__img {
  transform: scale(1.06)
}

.detail-cards {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0
}

.detail-cards__inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "prev viewport next";
  align-items: center;
  gap: .5rem;
}

.carousel__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--text) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease), border-color var(--fast) var(--ease);
}

.carousel__btn.is-prev {
  grid-area: prev
}

.carousel__btn.is-next {
  grid-area: next
}

.carousel__btn:hover {
  transform: translateY(-1px);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.carousel__btn[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none
}

.carousel__btn i {
  width: 22px;
  height: 22px;
  color: #fff
}

.carousel__viewport {
  grid-area: viewport;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: .25rem 0 .5rem;
}

.carousel__viewport::-webkit-scrollbar {
  display: none
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: clamp(.9rem, 2.2vw, 1.25rem);
  padding: .25rem 0 .5rem;
}

.cards-grid>.service-card {
  scroll-snap-align: start
}

.detail-cards .cards-grid {
  display: flex;
  gap: clamp(.9rem, 2.2vw, 1.25rem);
  padding: 0;
  margin: 0;
}

.detail-cards .cards-grid>.service-card {
  flex: 0 0 clamp(260px, 30vw, 360px);
}

.blog {
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(14, 27, 57, .65), transparent 60%),
    var(--bg);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.blog.blog--detail {
  padding-top: clamp(1.5rem, 3vw, 2.25rem)
}

.blog__head {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
}

.blog__head .text-gradient {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 .4rem;
}

.blog__subtitle {
  color: color-mix(in srgb, var(--text) 82%, transparent);
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  margin: 0 auto;
  max-width: 60ch;
}

.blog__grid {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.blog-card {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--text) 18%, transparent);
  box-shadow: var(--shadow-md);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0b0d12;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms var(--ease), filter 220ms var(--ease);
  filter: contrast(1.02) saturate(1.02);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06)
}

.blog-card__body {
  padding: 1rem 1rem 1.15rem;
  display: grid;
  gap: .6rem;
}

.blog-card__meta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: color-mix(in srgb, var(--text) 70%, transparent);
  font-size: var(--fs-sm);
}

.blog-card__meta .icon {
  width: 18px;
  height: 18px
}

.blog-card__title {
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.25;
  font-size: clamp(1.05rem, 1rem + .7vw, 1.35rem);
  margin: 0;
}

.blog-card__text {
  color: color-mix(in srgb, var(--text) 88%, transparent);
  margin: 0;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-weight: 700;
  align-self: flex-start;
  padding: .7rem 1rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  color: var(--text);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.blog-card__more .icon {
  width: 20px;
  height: 20px;
  transition: transform var(--fast) var(--ease)
}

.blog-card__more:hover {
  transform: translateY(-1px);
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.blog-card__more:hover .icon {
  transform: translateX(3px)
}

.blog {
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(14, 27, 57, .65), transparent 60%),
    var(--bg);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.blog.blog--detail {
  padding-top: clamp(1.5rem, 3vw, 2.25rem)
}

.blog__head {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
}

.blog__head .text-gradient {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 .4rem;
}

.blog__subtitle {
  color: color-mix(in srgb, var(--text) 82%, transparent);
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  margin: 0 auto;
  max-width: 60ch;
}

.blog__grid {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.blog-card {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--text) 18%, transparent);
  box-shadow: var(--shadow-md);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0b0d12;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms var(--ease), filter 220ms var(--ease);
  filter: contrast(1.02) saturate(1.02);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06)
}

.blog-card__body {
  padding: 1rem 1rem 1.15rem;
  display: grid;
  gap: .6rem;
}

.blog-card__meta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: color-mix(in srgb, var(--text) 70%, transparent);
  font-size: var(--fs-sm);
}

.blog-card__meta .icon {
  width: 18px;
  height: 18px
}

.blog-card__title {
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.25;
  font-size: clamp(1.05rem, 1rem + .7vw, 1.35rem);
  margin: 0;
}

.blog-card__text {
  color: color-mix(in srgb, var(--text) 88%, transparent);
  margin: 0;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-weight: 700;
  align-self: flex-start;
  padding: .7rem 1rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  color: var(--text);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.blog-card__more .icon {
  width: 20px;
  height: 20px;
  transition: transform var(--fast) var(--ease)
}

.blog-card__more:hover {
  transform: translateY(-1px);
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.blog-card__more:hover .icon {
  transform: translateX(3px)
}

.more-services {
  background: #000;
  padding: clamp(2rem, 4vw, 3rem) 0;
  position: relative;
  z-index: 1;
}

.more-services__inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.more-services__head {
  text-align: center;
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
}

.more-services__title {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 .4rem;
}

.more-services__subtitle {
  color: color-mix(in srgb, #ffffff 82%, transparent);
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  margin: 0 auto;
  max-width: 60ch;
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "prev viewport next";
  align-items: center;
  gap: .5rem;
}

.carousel__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border: 1px solid color-mix(in srgb, #ffffff 14%, transparent);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease), border-color var(--fast) var(--ease);
}

.carousel__btn.is-prev {
  grid-area: prev
}

.carousel__btn.is-next {
  grid-area: next
}

.carousel__btn:hover {
  transform: translateY(-1px);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.carousel__btn[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none;
}

.carousel__btn i {
  width: 22px;
  height: 22px;
  color: #fff
}

.carousel__viewport {
  grid-area: viewport;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel__viewport::-webkit-scrollbar {
  display: none
}

.carousel__track.svc-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: clamp(.9rem, 2.2vw, 1.25rem);
  padding: .25rem 0 .5rem;
  align-items: stretch;
}

.carousel__track.svc-carousel__track>.service-card {
  scroll-snap-align: start;
}

.crumbs-bar {
  --ring: color-mix(in srgb, #ffffff 12%, transparent);
  background: color-mix(in srgb, var(--bg, #0b0d12) 60%, transparent);
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
  position: relative;
  z-index: 2;
  height: 40px;
}

.crumbs-bar__inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: .5rem 0;
}

.jms-breadcrumbs {
  display: block;
  font-size: var(--fs-sm, .95rem);
  color: color-mix(in srgb, #ffffff 78%, transparent);
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.jms-breadcrumbs::-webkit-scrollbar {
  display: none;
}

.jms-breadcrumbs a {
  color: var(--link, #7aa2ff);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--fast, 160ms) var(--ease, ease), text-shadow var(--fast, 160ms) var(--ease, ease);
}

.jms-breadcrumbs a:hover {
  color: #fff;
  text-shadow: 0 0 1px #fff;
}

.jms-breadcrumbs span {
  color: color-mix(in srgb, #ffffff 88%, transparent);
  font-weight: 800;
}

.jms-breadcrumbs a+span,
.jms-breadcrumbs span+a,
.jms-breadcrumbs a+a,
.jms-breadcrumbs span+span {
  margin-left: .15ch;
}

.jms-breadcrumbs a:focus-visible {
  outline: 2px solid var(--focus, #78a9ff);
  outline-offset: 2px;
  border-radius: 4px;
}

.post {
  color: #fff;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}

.post__inner {
  max-width: var(--max-w, 980px);
  margin-inline: auto;
  padding-inline: 1rem;
}

.post__head {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.post__meta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .85);
  font-size: .975rem;
  opacity: .95;
}

.post__meta .icon {
  width: 18px;
  height: 18px;
}

.post__title {
  margin: .5rem auto .5rem;
  font-size: clamp(2rem, 1.4rem + 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  padding: 2rem 0;
}

.post__excerpt {
  margin: 0 auto;
  max-width: 72ch;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.02rem, .95rem + .6vw, 1.2rem);
  line-height: 1.75;
}

.post__cover {
  margin: clamp(1rem, 3vw, 1.6rem) 0 clamp(1rem, 2.2vw, 1.4rem);
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
}

.post__cover img {
  width: 100%;
  height: clamp(260px, 48vw, 520px);
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .4s ease;
  filter: contrast(1.03) saturate(1.02);
}

.post__cover:hover img {
  transform: scale(1.06)
}

.post__content {
  display: grid;
  gap: 1rem;
  font-size: clamp(1rem, .98rem + .2vw, 1.0625rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, .92);
}

.post__content h2 {
  font-size: clamp(1.35rem, 1.05rem + 1.6vw, 1.75rem);
  letter-spacing: -.01em;
  margin-top: .6rem;
}

.post__list {
  padding-left: 1.1rem;
  display: grid;
  gap: .35rem;
}

.post__list li {
  list-style: disc;
}

.post__list--ol {
  padding-left: 1.25rem;
  display: grid;
  gap: .35rem;
}

.post__list--ol li {
  list-style: decimal;
}

.post__callout {
  margin: .4rem 0;
  padding: .9rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .05);
  color: #fff;
}

@media (max-width: 1180px) {

  .nav {
    --gap: 1rem
  }

  .process__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-cta-blue__inner {
    max-width: 1280px;
  }

  .about-cta-blue__img {
    height: 600px;
  }

  .about-history__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-history__col--media {
    order: -1;
  }

  .about-history__img {
    height: clamp(240px, 56vw, 420px);
  }

  .about-experience__grid {
    grid-template-columns: 1fr 1fr;
  }

  .differentials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cases__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr
  }

  .location__inner {
    max-width: 1080px;
  }

  .c-track {
    display: grid;
    grid-auto-flow: unset;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: unset;
    overflow-x: visible;
  }

  .cards-grid {
    --cols: 4;
  }

  .servicos-info__title {
    font-size: clamp(1.875rem, 1.2rem + 3vw, 3rem);
  }

  .more-services__inner {
    max-width: 1120px;
  }

  .more-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (min-width: 981px) {
  .nav__panel {
    display: contents;
    padding: 0;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__header,
  .nav__footer {
    display: none;
  }
}

@media (max-width: 980px) {

  body {
    background-attachment: scroll, scroll, scroll;
    background-position:
      center top,
      center top,
      40% 100%;
    background-size: cover, cover, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
  }

  .header-wrap {
    min-height: 74px;
  }

  .brand img {
    height: clamp(68px, 16vw, 70px);
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 120;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3.5rem 2rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translate3d(0, -110%, 0);
    opacity: 0;
    transition: transform var(--normal) var(--ease), opacity var(--fast) var(--ease);
    pointer-events: none;
    overflow-y: auto;
  }

  .nav[data-open="true"] {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    background: transparent;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.48);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.85);
    display: flex;
    flex-direction: column;
    padding: 0.9rem 0.9rem 1rem;
    gap: 0.35rem;
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
  }

  .nav__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(140deg,
        rgba(15, 23, 42, 0.96),
        rgba(30, 64, 175, 0.94));
    opacity: 0.96;
  }

  .nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.15rem 0.25rem 0.55rem;
    margin: 0 0.1rem 0.35rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.9);
  }

  .nav__title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.98);
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(15, 23, 42, 0.6);
    color: rgba(148, 163, 184, 0.98);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  }

  .nav-close .icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.1;
  }

  .nav-close:hover,
  .nav-close:focus-visible {
    border-color: rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    outline: none;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0 0.15rem;
    width: 100%;
  }

  .nav-list>li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.6rem 0.85rem;
    border-radius: 0.9rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: #e5e7eb;
    text-decoration: none;
    position: relative;
  }

  .nav-list a:after {
    display: none;
  }

  .nav-list a:hover {
    background: transparent;
    text-decoration: none;
  }

  .nav-list>li:not(.nav-item--has-dd)>a {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(30, 64, 175, 0.55);
  }

  .nav-list>li:not(.nav-item--has-dd)>a:hover {
    background: color-mix(in srgb, var(--color-blue) 18%, #020617 82%);
    border-color: rgba(59, 130, 246, 0.9);
  }

  .nav-item {
    position: static;
    width: 100%;
  }

  .nav-item__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.85rem;
    border-radius: 0.9rem;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(30, 64, 175, 0.6);
  }

  .nav-item__wrapper>a {
    flex: 1;
    padding: 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: #e5e7eb;
  }

  .nav-item__wrapper:hover {
    background: color-mix(in srgb, var(--color-blue) 20%, #020617 80%);
    border-color: rgba(59, 130, 246, 0.95);
  }

  .nav-dd-toggle {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.55);
    transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
  }

  .nav-dd-toggle:hover,
  .nav-dd-toggle:focus-visible {
    background: rgba(15, 23, 42, 1);
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.9);
    outline: none;
  }

  .nav-dd-toggle .icon {
    width: 0.95rem;
    height: 0.95rem;
    stroke-width: 2.2;
    transition: transform 0.18s ease;
  }

  .nav-dd-toggle[aria-expanded="true"] .icon {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 0.22s ease, opacity 0.18s ease;
  }

  .nav-dropdown.is-open {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0.2rem;
    padding-top: 0.15rem;
  }

  .nav-dropdown[hidden] {
    display: block;
    opacity: 0;
    pointer-events: none;
  }

  .nav-dropdown>li>a {
    padding: 0.32rem 0.3rem 0.32rem 1.2rem;
    font-size: 0.9rem;
    white-space: normal;
    color: rgba(203, 213, 225, 0.95);
    border-radius: 0.4rem;
    position: relative;
  }

  .nav-dropdown>li>a::before {
    content: "";
    position: absolute;
    left: 0.6rem;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.9);
    transform: translateY(-50%);
  }

  .nav-dropdown>li>a:hover,
  .nav-dropdown>li>a:focus-visible {
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    outline: none;
  }

  .nav-dropdown__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0;
  }

  .nav-dropdown__row>a {
    flex: 1;
    font-size: 0.9rem;
    white-space: normal;
    color: rgba(226, 232, 240, 0.96);
  }

  .nav-dd-toggle--inner {
    width: 30px;
    height: 30px;
    margin-left: 0.15rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.5);
  }

  .nav-dd-toggle--inner .icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  .nav-dropdown--inner {
    padding-left: 0.85rem;
    border-left: 1px dashed rgba(148, 163, 184, 0.6);
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.2s ease, opacity 0.18s ease;
  }

  .nav-dropdown--inner.is-open {
    max-height: 480px;
    margin-top: 0.15rem;
    padding-top: 0.15rem;
    padding-bottom: 0.25rem;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown--inner>li>a {
    padding: 0.26rem 0 0 1.5rem;
    font-size: 0.86rem;
    color: rgba(203, 213, 225, 0.96);
  }

  .nav-dropdown--inner>li>a:hover,
  .nav-dropdown--inner>li>a:focus-visible {
    color: #e5e7eb;
    transform: translateX(2px);
    outline: none;
  }

  /* Rodapé dentro do menu */

  .nav__footer {
    margin-top: 0.75rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(30, 64, 175, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
  }

  .nav__meta {
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.98);
    text-align: center;
  }

  .nav__meta strong {
    color: #e5e7eb;
    font-weight: 600;
  }

  .cta-desktop {
    display: none;
  }

  .site-header .btn {
    padding: .55rem .8rem;
    font-size: .92rem;
  }

  .site-header .btn--lg {
    padding: .6rem .9rem;
    font-size: .95rem;
  }

  .site-header .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 130;
    transition: opacity 0.16s ease;
  }

  .menu-open .hamburger {
    opacity: 0;
    pointer-events: none;
  }

  .menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 72vh;
    padding-top: 10px
  }

  .hero__inner {
    max-width: 720px
  }

  .hero__subtitle {
    font-size: clamp(1.05rem, .9rem + 1vw, 1.25rem)
  }

  .category::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(to bottom,
        rgba(11, 18, 32, 0) 0%,
        rgba(11, 18, 32, 0) 65%,
        rgba(11, 18, 32, 0.45) 85%,
        #0b1220 100%);
    pointer-events: none;
    z-index: -1;
  }

  .features__grid {
    grid-template-columns: 1fr 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr 1fr
  }

  .reviews__grid {
    grid-template-columns: 1fr 1fr
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2.6vw, 2rem);
  }

  .about-mvv__grid {
    grid-template-columns: 1fr;
  }

  .hero--sobre {
    background: linear-gradient(to bottom,
        rgba(11, 18, 32, 0) 0%,
        rgba(11, 18, 32, 0) 45%,
        rgba(11, 18, 32, 0.45) 65%,
        #0b1220 100%);
    pointer-events: none;
    z-index: -1;
    min-height: 64vh;
    padding-top: 30px;
  }

  .hero--sobre__inner {
    max-width: 720px;
  }

  .hero--sobre__subtitle {
    font-size: clamp(1.05rem, .9rem + 1vw, 1.25rem);
  }

  .quote__grid {
    grid-template-columns: 1fr
  }

  .hero--contato {
    min-height: 58vh;
    padding-top: 10px
  }

  .hero--contato__inner {
    max-width: 720px
  }

  .hero--servicos {
    min-height: 72vh;
    padding-top: 10px
  }

  .hero--servicos__inner {
    max-width: 720px
  }

  .hero--servicos__subtitle {
    font-size: clamp(1.05rem, .9rem + 1vw, 1.25rem)
  }

  .servicos-info__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .servicos-info__col--media {
    order: -1;
  }

  .servicos-info__img {
    height: clamp(240px, 52vw, 420px);
  }

  .more-services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .is-collapsible {
    --lines: 10;
  }

  .events-types__grid {
    grid-template-columns: 1fr;
  }

  .event-card__media {
    aspect-ratio: 16 / 10;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr
  }

  .detail-hero {
    background-attachment: scroll, scroll, scroll
  }

  .detail-hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "desc";
  }

  .detail-hero__media {
    aspect-ratio: 16/10
  }

  .carousel {
    grid-template-columns: 1fr auto;
    grid-template-areas: "viewport next"
  }

  .carousel__btn {
    display: none;
  }

  .carousel__btn.is-prev {
    display: none
  }

  .about-cta-blue__features {
    grid-template-columns: 1fr;
  }

  .about-history__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .list-page,
  .blog-extra,
  .full-bleed,
  .final-cta,
  .differentials,
  .site-footer {
    position: relative;
    z-index: 0;
  }

  .list-page::before,
  .list-page::after,
  .blog-extra::before,
  .blog-extra::after,
  .full-bleed::before,
  .full-bleed::after,
  .final-cta::before,
  .final-cta::after,
  .differentials::before,
  .differentials::after {
    pointer-events: none !important;
    z-index: -1;
  }

  .cards-grid,
  .list-card,
  .list-card__media,
  .list-card__btn {
    position: relative;
    z-index: 1;
  }

}

@media (max-width:640px) {
  :root {
    --header-h: 76px;
    --th-h: 52px;
  }

  .site-header .btn {
    padding: .5rem .75rem;
    font-size: .9rem;
    border-radius: 10px;
  }

  .header-wrap {
    min-height: 76px
  }

  .brand img {
    height: clamp(34px, 9vw, 50px);
  }

  .nav-list a {
    padding: .9rem .6rem;
  }

  .crumbs-bar__inner {
    padding: .65rem 0;
  }

  .jms-breadcrumbs {
    font-size: .9rem;
  }

  .hero {
    min-height: 64vh;
    padding-top: 10px
  }

  .hero__title {
    font-size: clamp(2rem, 1.5rem + 6vw, 2.8rem)
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch
  }

  .hero--servicos {
    min-height: 64vh;
    padding-top: 10px
  }

  .hero--servicos__title {
    font-size: clamp(2rem, 1.5rem + 6vw, 2.8rem)
  }

  .hero--servicos .hero__actions {
    flex-direction: column;
    align-items: stretch
  }

  .hero--sobre {
    min-height: 56vh;
    padding-top: 30px;
  }

  .hero--sobre__title {
    font-size: clamp(2rem, 1.5rem + 6vw, 2.8rem);
  }

  .hero--contato {
    min-height: 52vh;
    padding-top: 10px
  }

  .hero--contato__title {
    font-size: clamp(2rem, 1.5rem + 6vw, 2.8rem)
  }

  .quote__grid {
    grid-template-columns: 1fr
  }

  .features {
    padding: 2.25rem 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.1rem;
  }

  .feature-card__badge {
    width: 56px;
    height: 56px
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step__circle {
    width: 76px;
    height: 76px;
  }

  .about-experience {
    padding: 2.25rem 0;
  }

  .about-experience__grid {
    grid-template-columns: 1fr;
  }

  .products {
    padding: 2.25rem 0
  }

  .products__grid {
    grid-template-columns: 1fr
  }

  .product-card__cta {
    min-width: 100%
  }

  .reviews {
    padding: 2.25rem 0
  }

  .reviews__grid {
    grid-template-columns: 1fr
  }

  .about {
    padding: 2.25rem 0
  }

  .about__grid {
    grid-template-columns: 1fr
  }

  .about-card__iconwrap {
    width: 56px;
    height: 56px
  }

  .about-card__icon {
    width: 24px;
    height: 24px
  }

  .cta__title {
    font-size: clamp(1.75rem, 1.2rem + 4vw, 2.4rem);
  }

  .about-cta-blue {
    padding: 2.25rem 0;
  }

  .about-cta-blue__title {
    font-size: clamp(1.75rem, 1.2rem + 4vw, 2.2rem);
  }

  .final-cta__title {
    font-size: clamp(1.75rem, 1.2rem + 4vw, 2.4rem);
  }

  .differentials {
    padding: 2.25rem 0;
  }

  .differentials__grid {
    grid-template-columns: 1fr;
  }

  .diff-card__iconwrap {
    width: 56px;
    height: 56px
  }

  .diff-card__icon {
    width: 24px;
    height: 24px
  }

  .blog {
    padding: 1.5rem 0
  }

  .blog__grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .blog-card__body {
    padding: .9rem 1rem 1.05rem
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .blog-btn {
    margin: var(--space-4)
  }

  .post__title {
    font-size: clamp(1.75rem, 1.2rem + 4vw, 2.4rem);
  }

  .post__cover img {
    height: 260px;
  }

  .coverage {
    padding: 2.25rem 0
  }

  .coverage__map {
    aspect-ratio: 4 / 3;
  }

  .servicos-info {
    padding: 2.25rem 0;
  }

  .servicos-info__title {
    font-size: clamp(1.75rem, 1.2rem + 4vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .more-services {
    padding: 1.5rem 0
  }

  .carousel__track.svc-carousel__track {
    grid-auto-columns: 82%
  }

  .more-services__title {
    font-size: clamp(1.75rem, 1.2rem + 4vw, 2.4rem);
  }

  .more-services__grid {
    grid-template-columns: 1fr;
  }

  .is-collapsible {
    --lines: 12;
  }

  .faq__title {
    font-size: clamp(1.75rem, 1.2rem + 4vw, 2.4rem);
  }

  .faq__subtitle {
    margin-bottom: 1.5rem;
  }

  .cat-cards {
    padding: 1.75rem 0 2.75rem;
  }

  .cat-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "viewport";
    align-items: center;
    gap: 0;
  }

  .cat-carousel__viewport {
    position: relative;
    grid-area: viewport;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-inline: 1rem;
    touch-action: pan-x;
  }

  .cat-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88%, 1fr);
    gap: 1.1rem;
    padding: 0.5rem 0 1.35rem;
    align-items: stretch;
  }

  .cat-cards__grid>.service-card {
    scroll-snap-align: center;
    min-height: 310px;
  }

  .service-card__media {
    aspect-ratio: 4 / 3;
  }

  .service-card__body {
    padding: 1rem 1.1rem 1.3rem;
  }

  .service-card__title {
    font-size: clamp(1.1rem, 1.04rem + 1.1vw, 1.35rem);
  }

  .cat-carousel__btn {
    display: none;
  }

  .list-page {
    background: linear-gradient(to bottom,
        rgba(11, 18, 32, 0) 0%,
        rgba(11, 18, 32, 0) 35%,
        rgba(11, 18, 32, 0.45) 45%,
        #0b1220 100%);
    padding: 2.25rem 0;
    position: relative;
    z-index: 0;
    pointer-events: auto;
  }

  .cards-grid {
    grid-template-columns: 1fr
  }

  .list-card--compact {
    min-height: 0
  }

  .detail-hero {
    padding: 2rem 0
  }

  .carousel__track {
    grid-auto-columns: 82%
  }

  .detail-cards {
    padding: 1.25rem 0 1.75rem
  }

  .detail-cards .cards-grid>.service-card {
    flex-basis: 82%
  }

  .site-footer {
    padding: 2rem 0
  }

  .footer__desc {
    max-width: initial
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .footer__col {
    align-items: center;
    text-align: center
  }

  .footer__brand img {
    margin-inline: auto
  }

  .footer__social {
    justify-content: center
  }

  .footer__links,
  .footer__contact,
  .footer__hours {
    align-items: center
  }

  .footer__contact li {
    grid-template-columns: 22px auto;
    justify-content: center;
    align-items: center;
  }

  .footer__contact small {
    text-align: center
  }

  .footer__about {
    text-align: center
  }

  .footer__about p {
    margin-inline: auto;
    max-width: 100%
  }

  .footer-products__header {
    justify-content: center;
    text-align: center;
  }

  .footer-products__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem 1.25rem;
    justify-items: center;
  }

  .footer-products__col {
    text-align: center;
  }

  .footer-products__title {
    font-size: 0.95rem;
  }

  .footer-products__list {
    justify-items: center;
  }

  .footer-products__list-item a {
    justify-content: center;
  }

  .footer-products__list-item a::before {
    margin-right: 0.25rem;
  }

  .float-whatsapp {
    width: 56px;
    height: 56px
  }
}

@media (max-width: 560px) {
  .wpp-lead__panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: .95rem;
    border-radius: 16px;
  }

  .wpp-lead__title {
    font-size: 1rem;
  }

  .wpp-lead__desc {
    font-size: .92rem;
  }

  .wpp-lead__grid {
    gap: .65rem;
  }

  .wpp-lead__field input {
    padding: .75rem .85rem;
    border-radius: 14px;
  }

  .wpp-lead__checks {
    gap: .55rem;
  }

  .wpp-lead__check {
    width: 100%;
    justify-content: flex-start;
    padding: .65rem .8rem;
    border-radius: 14px;
  }

  .wpp-lead__submit {
    padding: 1rem 1rem;
    border-radius: 14px;
  }
}

@supports (padding: max(0px)) {
  @media (max-width: 560px) {
    .wpp-lead__panel {
      bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .lead-toast {
      bottom: calc(18px + env(safe-area-inset-bottom));
    }
  }
}

@media (max-width: 480px) {

  .process__steps {
    grid-template-columns: 1fr;
  }

  .about-history {
    padding: 2.25rem 0;
  }

  .about-history__title {
    font-size: clamp(1.75rem, 1.2rem + 4vw, 2.2rem);
    margin-bottom: 1rem;
  }

  .about-history__text {
    gap: .9rem;
  }

  .about-history__gallery-title {
    font-size: clamp(1.25rem, 1rem + 3vw, 1.6rem);
    margin: .9rem 0 .8rem;
  }

  .about-history__gallery {
    grid-template-columns: 1fr;
  }

  .footer-products__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-products__col {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  .list-card,
  .pager__link,
  .pager__num,
  .list-card__media>img {
    transition: none !important;
  }
}

/* Elfsight - Google Reviews */
.elfsight-app-8d5db5c8-a669-4338-bece-de768afe6dc9 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.elfsight-app-8d5db5c8-a669-4338-bece-de768afe6dc9 {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding: 0 12px;
  box-sizing: border-box;
}

.elfsight-app-8d5db5c8-a669-4338-bece-de768afe6dc9 {
  background: #000;
}

.elfsight-lazy {
  position: relative;
  min-height: 280px;
}

.elfsight-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #ffffff 10%, transparent);
  background: color-mix(in srgb, #0b1220 92%, #000 8%);
  color: color-mix(in srgb, #ffffff 88%, transparent);
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 18px 55px rgb(0 0 0 / 35%);
}

@media (min-width: 981px) {
  .elfsight-app-8d5db5c8-a669-4338-bece-de768afe6dc9 {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    padding: 0 12px;
  }
}

@media (max-width: 980px) {
  .elfsight-app-8d5db5c8-a669-4338-bece-de768afe6dc9 {
    position: static;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    background: #000;
  }
}

html,
body {
  overflow-x: clip;
}

@supports not (overflow: clip) {

  html,
  body {
    overflow-x: hidden;
  }
}

/* ===========================================
   Cookie Banner + Preferences
   =========================================== */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 10000;
  display: none;
  padding: 0 12px;
}

.cookie[aria-hidden="false"] { display: block; }

.cookie__inner{
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: .9rem;
  grid-template-columns: 1fr auto;
  align-items: center;

  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, #ffffff 12%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, #000 12%);
  box-shadow: 0 18px 55px rgb(0 0 0 / 55%);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.cookie__title{
  margin: 0 0 .25rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: #fff;
}

.cookie__desc{
  margin: 0;
  color: color-mix(in srgb, #ffffff 82%, transparent);
  font-size: .95rem;
  line-height: 1.45;
}

.cookie__link{
  color: color-mix(in srgb, var(--color-blue) 85%, #fff 15%);
  text-decoration: none;
  font-weight: 700;
}

.cookie__link:hover{ filter: brightness(1.08); text-decoration: underline; }

.cookie__actions{
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie__btn{
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: .75rem .95rem;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease), filter 150ms var(--ease), background 150ms var(--ease);
}

.cookie__btn:active{ transform: translateY(1px) scale(.99); }

.cookie__btn--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid color-mix(in srgb, #ffffff 14%, transparent);
  color: #fff;
}

.cookie__btn--ghost:hover{
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgb(0 0 0 / 35%);
}

.cookie__btn--primary{
  background: color-mix(in srgb, var(--color-blue) 70%, #7c3aed 30%);
  color: #fff;
  box-shadow: 0 12px 30px rgb(0 0 0 / 40%);
}

.cookie__btn--primary:hover{
  filter: brightness(1.05);
  box-shadow: 0 16px 40px rgb(0 0 0 / 45%);
}

/* Modal */
.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
}

.cookie-modal[aria-hidden="false"]{ display: block; }

.cookie-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cookie-modal__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(560px, calc(100vw - 24px));
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, #ffffff 12%, transparent);
  background: color-mix(in srgb, var(--bg) 90%, #000 10%);
  box-shadow: 0 22px 70px rgb(0 0 0 / 60%);
  padding: 1.05rem 1.05rem .95rem;
}

.cookie-modal__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: .75rem;
}

.cookie-modal__title{
  margin: 0;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.01em;
  font-size: 1.05rem;
}

.cookie-modal__close{
  appearance:none;
  border:0;
  background: transparent;
  color:#fff;
  font-size: 1.4rem;
  cursor:pointer;
  padding:.25rem .45rem;
  border-radius: 10px;
}

.cookie-modal__close:focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-blue) 30%, transparent);
}

.cookie-modal__desc{
  margin: .65rem 0 .9rem;
  color: color-mix(in srgb, #ffffff 80%, transparent);
  line-height: 1.5;
}

.cookie-modal__form{ display: grid; gap: .75rem; }

.cookie-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem .85rem;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid color-mix(in srgb, #ffffff 10%, transparent);
}

.cookie-row__info{ display:grid; gap:.15rem; }
.cookie-row__label{ color:#fff; font-weight: 900; }
.cookie-row__hint{ color: color-mix(in srgb, #ffffff 72%, transparent); font-size: .9rem; }

.cookie-switch{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.cookie-switch input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.cookie-switch__ui{
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid color-mix(in srgb, #ffffff 14%, transparent);
  box-shadow: 0 10px 24px rgb(0 0 0 / 30%);
  position: relative;
  transition: background 150ms var(--ease), border-color 150ms var(--ease), filter 150ms var(--ease);
}

.cookie-switch__ui::after{
  content:"";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  position:absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: transform 150ms var(--ease);
}

.cookie-switch input:checked + .cookie-switch__ui{
  background: color-mix(in srgb, var(--color-blue) 70%, #7c3aed 30%);
  border-color: transparent;
}

.cookie-switch input:checked + .cookie-switch__ui::after{
  transform: translate(22px, -50%);
}

.cookie-modal__actions{
  display:flex;
  gap:.6rem;
  justify-content: flex-end;
  margin-top: .25rem;
  flex-wrap: wrap;
}

.cookie-modal__foot{
  margin: .65rem 0 0;
  font-size: .9rem;
  color: color-mix(in srgb, #ffffff 70%, transparent);
}

@media (max-width: 720px){
  .cookie__inner{ grid-template-columns: 1fr; }
  .cookie__actions{ justify-content: flex-start; }
}
