:root {
  --bg: #0b0f14;
  --bg-soft: #151b22;
  --surface: rgba(34, 40, 48, 0.72);
  --surface-2: rgba(18, 22, 29, 0.88);
  --text: #f3f1eb;
  --muted: #b7b2a7;
  --primary: #d5a63a;
  --primary-2: #f0c86c;
  --success: #2adf8f;
  --max: 1200px;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  --line: rgba(240, 200, 108, 0.16);
  --glass-blur: blur(20px);
  --header-height: 80px;
  --header-offset: calc(var(--header-height) + 12px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Lato", sans-serif;
  background:
    radial-gradient(circle at 14% 0%, rgba(213, 166, 58, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255, 190, 72, 0.08), transparent 28%),
    linear-gradient(180deg, #0a0d11 0%, #10151c 42%, #0c1015 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  cursor: default;
  min-width: 320px;
  padding-top: var(--header-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, rgba(213, 166, 58, 0.05) 0 12%, transparent 12% 50%, rgba(213, 166, 58, 0.03) 50% 62%, transparent 62% 100%);
  background-size: 52px 52px, 52px 52px, 220px 220px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 92%);
  z-index: -1;
}

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

a,
button,
.btn,
.whatsapp-cta,
.mobile-action,
.wa-float {
  cursor: pointer;
}

.container {
  width: min(100% - clamp(1rem, 3vw, 2rem), var(--max));
  margin-inline: auto;
}

main,
section,
.site-header,
.site-footer {
  overflow-x: clip;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(211, 211, 211, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, -webkit-backdrop-filter .25s ease;
}

.site-header.scrolled {
  backdrop-filter: blur(26px) saturate(1.15);
  -webkit-backdrop-filter: blur(26px) saturate(1.15);
  background:
    linear-gradient(180deg, rgba(235, 235, 235, 0.58), rgba(210, 210, 210, 0.46));
  border-bottom-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1rem;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  max-width: 180px;
  flex: 0 0 auto;
  cursor: pointer;
}

.logo img {
  cursor: pointer;
}

.menu-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 1.8vw, 1.5rem);
  flex: 1 1 auto;
  min-width: 0;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(2rem, 2.6vw, 2.25rem);
  list-style: none;
  min-width: 0;
}

.menu li {
  min-width: 0;
}

.menu a {
  color: #111111;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, .36vw + .84rem, 4rem);
  font-weight: 700;
  letter-spacing: .03em;
  transition: color .22s ease, transform .22s ease, text-shadow .22s ease;
  white-space: nowrap;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -.52rem;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(213, 166, 58, 0), rgba(240, 200, 108, 1), rgba(213, 166, 58, 0));
  box-shadow:
    0 0 12px rgba(213, 166, 58, 0.34),
    0 0 24px rgba(213, 166, 58, 0.24);
  transform: translateX(-50%);
  transition: width .22s ease, box-shadow .22s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: #000000;
  text-shadow: 0 8px 18px rgba(213, 166, 58, 0.22);
  transform: translateY(-1px);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  width: calc(100% - .1rem);
  box-shadow:
    0 0 16px rgba(213, 166, 58, 0.45),
    0 0 30px rgba(213, 166, 58, 0.32);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 0 0 auto;
}

.whatsapp-cta {
  min-height: 56px;
  padding: 0 clamp(1rem, 1.8vw, 1.2rem);
  border-radius: 999px;
  border: 1px solid rgba(145, 255, 195, 0.34);
  background: linear-gradient(95deg, #18c070 0%, #48e499 100%);
  color: #06311d;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(.9rem, .35vw + .78rem, 1rem);
  box-shadow: 0 10px 22px rgba(28, 197, 117, 0.34);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  position: relative;
  overflow: hidden;
}

.whatsapp-cta::before {
  content: "";
  position: absolute;
  inset: -140% auto auto -30%;
  width: 36%;
  height: 360%;
  transform: rotate(24deg);
  background: rgba(229, 255, 241, 0.6);
  filter: blur(10px);
  transition: transform .35s ease;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(227, 255, 239, 0.34), 0 0 26px rgba(40, 224, 137, 0.48);
  filter: saturate(1.05);
}

.whatsapp-cta:hover::before,
.whatsapp-cta:focus-visible::before {
  transform: translateX(360%) rotate(24deg);
}

.nav-right .whatsapp-cta,
.menu-shell .whatsapp-cta {
  background:
    linear-gradient(180deg, rgba(255, 241, 183, 0.66), rgba(255, 238, 170, 0.832) 42%),
    linear-gradient(95deg, #b8860b 0%, goldenrod 48%, #f3d170 100%);
  color: #2f2411;
  border-color: rgba(225, 178, 47, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 245, 0.52),
    0 10px 24px rgba(184, 134, 11, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(240, 200, 108, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 240, 199, 0.18), rgba(255, 240, 199, 0) 42%),
    linear-gradient(135deg, #8e6b12 0%, goldenrod 42%, #f0cc67 100%);
  color: #120d05;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 205, 0.4),
    0 12px 28px rgba(135, 96, 22, 0.38),
    0 0 0 1px rgba(240, 200, 108, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform .2s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.menu-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  transform: translate(0, -1px);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 244, 212, 0.24), rgba(255, 244, 212, 0) 42%),
    linear-gradient(135deg, #a97d16 0%, #e0b12d 55%, #f7da86 100%);
  border-color: rgba(255, 221, 145, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 222, 0.48),
    0 14px 30px rgba(165, 117, 28, 0.44),
    0 0 24px rgba(213, 166, 58, 0.18);
  transform: translateY(-1px);
}

.menu-toggle[aria-expanded="true"] {
  background:
    linear-gradient(180deg, rgba(255, 244, 212, 0.2), rgba(255, 244, 212, 0) 42%),
    linear-gradient(135deg, #7f5e10 0%, #b8860b 36%, #e2b63b 100%);
  border-color: rgba(255, 221, 145, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 243, 210, 0.44),
    0 16px 32px rgba(111, 78, 18, 0.42),
    0 0 0 1px rgba(240, 200, 108, 0.16);
}

.hero {
  padding: 2rem 0 3.5rem;
}

@media (min-width: 861px) {
  .hero {
    padding-bottom: .2rem;
  }

  .hero-grid {
    align-items: start;
  }

  .cta-row {
    margin-top: 1rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(.65rem, 1.5vw, 1rem);
  align-items: center;
  justify-items: center;
}

.hero-copy {
  align-self: center;
  padding-top: 1.25rem;
  max-width: 920px;
  text-align: center;
}

h1,
h2,
h3 {
  font-family: "Lato", sans-serif;
  line-height: 1.1;
}

.hero-copy > h1,
.hero-copy > h2 {
  font-size: clamp(1.42rem, 2.55vw, 2.15rem);
  margin-bottom: 0;
  letter-spacing: -0.03em;
  max-width: 34ch;
  text-align: center;
}

.hero-side {
  display: grid;
  gap: .8rem;
  align-self: center;
  justify-self: center;
  width: min(100%, 980px);
  margin-top: 1rem;
  margin-bottom: -.3rem;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.hero-summary span {
  min-height: 100%;
  padding: .95rem 1rem;
  border-top: 2px solid rgba(240, 200, 108, 0.55);
  color: #f4efe2;
  font-size: clamp(1rem, .58vw + .86rem, 1.18rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  transition: color .22s ease, text-shadow .22s ease, font-size .22s ease;
}

.hero-summary span:nth-child(2) {
  font-size: clamp(.98rem, .52vw + .84rem, 1.12rem);
}

@media (hover: hover) {
  .hero-summary span:hover {
    color: var(--primary-2);
    text-shadow: 0 0 18px rgba(213, 166, 58, 0.28);
    font-size: clamp(1.04rem, .62vw + .88rem, 1.22rem);
  }

  .hero-summary span:nth-child(2):hover {
    font-size: clamp(1.02rem, .56vw + .86rem, 1.16rem);
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: .6rem;
  justify-content: center;
}

.hero .cta-row {
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-top: .95rem;
  margin-bottom: 60px;
}

.btn {
  border: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .015em;
  padding: 1.15rem 2.2rem;
  min-width: clamp(220px, 24vw, 290px);
  min-height: 64px;
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1.12rem, .52vw + .98rem, 1.28rem);
}

.hero .btn {
  min-width: clamp(190px, 21vw, 250px);
  min-height: 56px;
  padding: .95rem 1.75rem;
  font-size: clamp(1rem, .4vw + .9rem, 1.12rem);
  border-radius: 999px;
  letter-spacing: .02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero .btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 249, 231, 0.32), rgba(255, 249, 231, 0) 34%),
    linear-gradient(120deg, #b07a1f 0%, #d8aa46 44%, #f7dda0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 232, 0.5),
    0 18px 38px rgba(165, 117, 28, 0.3);
}

.hero .btn-primary::after {
  border-radius: 999px;
  border-color: rgba(255, 240, 199, 0.36);
}

.hero .btn-outline {
  color: #ffecc0;
  border-color: rgba(240, 200, 108, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 247, 224, 0.12), rgba(255, 247, 224, 0) 34%),
    rgba(20, 25, 32, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 201, 0.1),
    0 16px 34px rgba(0, 0, 0, 0.24);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible,
.hero .btn-outline:hover,
.hero .btn-outline:focus-visible {
  transform: translateY(-4px) scale(1.015);
}

.btn-primary {
  color: #15110a;
  background:
    linear-gradient(180deg, rgba(255, 245, 214, 0.3), rgba(255, 245, 214, 0) 38%),
    linear-gradient(96deg, #b17d22 0%, #d5a63a 48%, #f3d07b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 228, 0.42),
    0 18px 36px rgba(182, 133, 45, 0.34);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -120% auto auto -35%;
  width: 42%;
  height: 330%;
  transform: rotate(24deg);
  background: rgba(255, 236, 191, 0.45);
  filter: blur(12px);
  transition: transform .35s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  border: 1px solid rgba(255, 231, 183, 0.32);
  pointer-events: none;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: translateX(340%) rotate(24deg);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(255, 233, 185, 0.22),
    0 0 34px rgba(213, 166, 58, 0.3),
    0 22px 42px rgba(146, 102, 24, 0.34);
}

.btn-outline {
  color: #fff1cb;
  border: 1px solid rgba(240, 200, 108, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 244, 213, 0.08), rgba(255, 244, 213, 0) 40%),
    rgba(213, 166, 58, 0.09);
  backdrop-filter: var(--glass-blur);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 201, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(240, 200, 108, 0.72);
  box-shadow:
    0 0 22px rgba(213, 166, 58, 0.2),
    0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero-media {
  justify-self: center;
  align-self: center;
  position: relative;
  overflow: hidden;
  width: min(100%, 860px);
}

.hero-media--image {
  margin-top: clamp(.15rem, .8vw, .5rem);
  width: min(100%, 720px);
}

.hero-media--image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(240, 200, 108, 0.18);
  border-radius: 14px;
  filter: saturate(.92) contrast(1.03) drop-shadow(0 24px 44px rgba(0, 0, 0, 0.34));
}

section {
  background: rgba(15, 18, 24, 0.74);
  padding: clamp(3rem, 5vw, 4rem) 0;
  position: relative;
  overflow: clip;
  scroll-margin-top: var(--header-offset);
}

.has-decor > .container {
  position: relative;
  z-index: 1;
}

#servicos {
  padding-top: 2rem;
  background:
    linear-gradient(180deg, rgba(24, 29, 36, 0.98), rgba(30, 36, 44, 0.96)),
    repeating-linear-gradient(135deg, rgba(240, 200, 108, 0.045) 0 18px, transparent 18px 36px);
}

#servicos .section-title {
  margin-top: 1.4rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.95rem);
  margin-bottom: .8rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 72ch;
}

.about .section-title {
  margin-bottom: 3rem;
}

.about {
  padding-top: 2.8rem;
  padding-bottom: 3.2rem;
  background:
    linear-gradient(180deg, rgba(22, 27, 34, 0.98), rgba(30, 36, 44, 0.96)),
    radial-gradient(circle at 82% 20%, rgba(213, 166, 58, 0.08), transparent 30%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 200, 108, 0.06), rgba(5, 15, 24, 0.04));
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-command-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #f0c86c;
  font-size: .84rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
}

.about-command-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 200, 108, 0), rgba(240, 200, 108, 0.95));
}

.about-command {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 0;
  max-width: none;
}

.about-command-main,
.about-command-stats {
  position: relative;
  border: 1px solid rgba(240, 200, 108, 0.16);
  background:
    linear-gradient(160deg, rgba(28, 33, 40, 0.96), rgba(11, 14, 19, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 84px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 235, 191, 0.05);
  overflow: hidden;
}

.about-command-main::before,
.about-command-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(240, 200, 108, 0.07), transparent 34%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

.about-command-main {
  min-height: 100%;
  padding: 1.9rem 2.3rem 2rem;
  border-radius: 26px;
}

.about-command-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .85fr);
  gap: 1.5rem;
  align-items: center;
}

.about-command-copy {
  min-width: 0;
}

.about-command-media {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-command-media img {
  width: min(100%, clamp(400px, 28vw, 460px));
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.about-command-main::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 82px;
  height: 82px;
  border-top: 1px solid rgba(240, 200, 108, 0.36);
  border-right: 1px solid rgba(240, 200, 108, 0.36);
  opacity: .7;
}

.about-command-main h3 {
  color: #f6e8be;
  font-size: clamp(1.95rem, 2.6vw, 2.8rem);
  line-height: 1.12;
  max-width: 22ch;
  margin: 1rem 0 .9rem;
}

.about-command-main p {
  max-width: 72ch;
  color: #d6cfc3;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: .9rem;
}

.about-command-main p:last-child {
  margin-bottom: 0;
}

.about-command-stats {
  border-radius: 24px;
  padding: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-content: start;
}

.about-stat {
  position: relative;
  min-height: 100%;
  padding: 1.35rem 1.45rem 1.3rem 1.45rem;
  border: 1px solid rgba(240, 200, 108, 0.14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(213, 166, 58, 0.04));
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.about-stat::before {
  content: "";
  position: absolute;
  left: .75rem;
  top: .9rem;
  bottom: .9rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(240, 200, 108, 0), rgba(240, 200, 108, 0.95), rgba(240, 200, 108, 0));
}

.about-stat strong {
  display: block;
  color: #fff3d0;
  font-size: 1.32rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}

.about-stat span {
  display: block;
  color: #cdc5b8;
  font-size: 1.08rem;
  line-height: 1.6;
}

.about-stat:hover,
.about-stat:focus-within {
  transform: translateY(-6px);
  border-color: rgba(240, 200, 108, 0.28);
  background: linear-gradient(145deg, rgba(255, 244, 214, 0.06), rgba(213, 166, 58, 0.08));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.about-certificates {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.1rem 1.15rem 1.8rem;
  width: 100%;
  max-width: 420px;
  min-height: auto;
  height: fit-content;
  align-self: start;
}

.about-certificates-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  min-width: 0;
}

.about-certificates h3 {
  color: #f2e1b1;
  margin-bottom: .35rem;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 420px;
  margin-inline: auto;
  column-gap: 1.2rem;
  row-gap: 1.35rem;
  justify-items: center;
  align-items: center;
}

.certificate-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 148px;
  height: 114px;
  padding: 0;
  transition: transform .25s ease, filter .25s ease;
  grid-column: span 2;
}

.certificate-item:nth-child(4) {
  grid-column: 2 / span 2;
  margin-top: .3rem;
  margin-bottom: .9rem;
}

.certificate-item:nth-child(5) {
  grid-column: 4 / span 2;
  margin-top: .3rem;
  margin-bottom: 1rem;
}

.certificate-item:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.06);
}

.certificate-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.certificate-item:nth-child(3) img {
  transform: scale(1.3);
}

.certificate-item:nth-child(4) img,
.certificate-item:nth-child(5) img {
  transform: scale(1.28);
}

.certificate-item:nth-child(4) img {
  transform: scale(1.28);
}

.certificate-item:nth-child(5) img {
  transform: scale(1.36);
}

.certificates-grid--differentials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  gap: .9rem;
}

.certificate-item--text {
  max-width: none;
  min-height: 118px;
  height: auto;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(240, 200, 108, 0.12);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(213, 166, 58, 0.04));
  display: grid;
  gap: .7rem;
  text-align: center;
}

.certificate-item--text i {
  font-size: 1.65rem;
  color: #f0c86c;
}

.certificate-item--text span {
  color: #f0ece2;
  font-weight: 700;
  line-height: 1.35;
}

.certificates-grid--differentials .certificate-item,
.certificates-grid--differentials .certificate-item:nth-child(4),
.certificates-grid--differentials .certificate-item:nth-child(5) {
  grid-column: span 1;
  margin: 0;
}

.about-certificates-cloud {
  width: min(100%, 320px);
  height: auto;
  margin-top: -2.5rem;
  margin-inline: auto;
  display: block;
  object-fit: contain;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: clamp(2.2rem, 4vw, 3.5rem);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
  border: 1px solid rgba(240, 200, 108, 0.12);
  border-radius: 28px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(26, 31, 38, 0.96), rgba(11, 14, 19, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 16px, transparent 16px 32px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(240, 200, 108, 0.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.service-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.service-card:nth-child(even) .service-media {
  grid-column: 2;
}

.service-card:nth-child(even) .service-content,
.service-card:nth-child(even) ul {
  grid-column: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 200, 108, 0.08), transparent 36%);
  pointer-events: none;
  transition: opacity .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(240, 200, 108, 0.08);
}

.service-card:hover::before {
  opacity: .95;
}

.service-media {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
  padding: 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(240, 200, 108, 0.12);
  position: relative;
  overflow: hidden;
}

.service-media::before,
.service-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.service-media::before {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(240, 200, 108, 0.2), transparent 64%);
}

.service-media::after {
  inset: 16px;
  border: 1px solid rgba(255, 230, 180, 0.08);
  border-radius: 18px;
}

.service-media i {
  position: relative;
  z-index: 1;
  font-size: clamp(4.8rem, 9vw, 6.8rem);
  color: #f5ebcf;
  text-shadow: 0 0 24px rgba(240, 200, 108, 0.18);
}

.service-media--icon {
  background:
    radial-gradient(circle at 50% 40%, rgba(240, 200, 108, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(34, 39, 46, 0.96), rgba(10, 12, 17, 0.98));
}

.service-media--icon::before {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(240, 200, 108, 0.16), transparent 68%);
}

.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.service-media:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.03);
}

.service-card--infra .service-media {
  background:
    linear-gradient(145deg, rgba(54, 44, 24, 0.9), rgba(18, 15, 11, 0.98));
}

.service-card--infra .service-media::before,
.service-card--infra .service-media::after {
  display: none;
}

.service-kicker {
  display: inline-block;
  margin-bottom: .45rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f0c86c;
}

.service-card--security .service-media {
  background:
    linear-gradient(145deg, rgba(38, 41, 47, 0.96), rgba(11, 13, 17, 0.98));
}

.service-card--security:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: .8rem;
  align-items: stretch;
}

.service-card--security .service-media {
  padding: .55rem;
  border-color: transparent;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 100%;
}

.service-card--security .service-media img {
  object-fit: cover;
  padding: 0;
}

.service-card--security .service-media::after {
  display: none;
}

.service-card--security ul {
  padding-right: .2rem;
  min-width: 0;
  gap: .5rem;
}

.service-card--security .service-content {
  min-width: 0;
}

.service-card--security li {
  padding: .72rem .35rem .72rem .72rem;
}

.service-card--projects .service-media {
  background:
    linear-gradient(145deg, rgba(45, 35, 20, 0.92), rgba(14, 12, 9, 0.98));
}

.service-card--projects {
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: .8rem;
  align-items: stretch;
}

.service-card--projects .service-media {
  padding: .55rem;
  border-color: transparent;
  border: 0;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 100%;
}

.service-card--projects .service-media img {
  object-fit: cover;
  padding: 0;
}

.service-card--projects .service-media::after {
  display: none;
}

.service-content {
  grid-column: 2;
  position: relative;
  z-index: 1;
  align-self: start;
  padding-inline: .7rem;
}

.service-card:nth-child(even) .service-content {
  padding-inline: .7rem;
}

.service-card h3 {
  color: #fff3d0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .55rem;
  letter-spacing: -.01em;
}

.service-intro {
  color: #cec7bc;
  max-width: 62ch;
  line-height: 1.65;
  margin-bottom: .95rem;
}

.service-card ul {
  list-style: none;
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .65rem;
  padding-inline: .7rem;
  position: relative;
  z-index: 1;
  color: #e7e0d4;
  font-size: .94rem;
  align-items: stretch;
}

.service-card:nth-child(even) ul {
  padding-inline: .7rem;
}

.service-card--monitoring .service-media {
  background:
    linear-gradient(145deg, rgba(36, 40, 46, 0.96), rgba(9, 11, 15, 0.98));
}

.service-card li {
  min-height: 100%;
  padding: .8rem .85rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 200, 108, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(213, 166, 58, 0.03));
  color: #e7e0d4;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.service-card li:hover {
  background: linear-gradient(145deg, rgba(255, 223, 153, 0.08), rgba(213, 166, 58, 0.08));
  border-color: rgba(240, 200, 108, 0.22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.operations-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(213, 166, 58, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(44, 50, 58, 0.94), rgba(54, 61, 70, 0.92));
}

.operations-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 640px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-radius: 34px;
  border: 1px solid rgba(255, 232, 181, 0.22);
  background:
    linear-gradient(115deg, rgba(70, 76, 84, 0.4) 0%, rgba(70, 76, 84, 0.14) 38%, rgba(54, 60, 68, 0.44) 100%),
    linear-gradient(180deg, rgba(255, 233, 190, 0.16), rgba(25, 30, 36, 0.14)),
    url("img/carro.webp") center center / cover no-repeat;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 243, 214, 0.16);
  isolation: isolate;
}

.operations-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 48, 55, 0.44) 0%, rgba(42, 48, 55, 0.2) 42%, rgba(42, 48, 55, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 233, 190, 0.18), transparent 28%, rgba(17, 22, 28, 0.04) 100%);
  z-index: -1;
}

.operations-showcase::after {
  content: "";
  position: absolute;
  inset: auto -7% -18% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 166, 58, 0.18), transparent 68%);
  filter: blur(26px);
  opacity: .85;
  z-index: -1;
}

.operations-intro {
  max-width: 42rem;
}

.operations-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .52rem .9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 200, 108, 0.18);
  background: rgba(11, 15, 20, 0.5);
  color: #f0c86c;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.operations-intro .section-title {
  max-width: 14ch;
  margin-bottom: 1rem;
}

.operations-lead {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: #ece3d2;
  line-height: 1.7;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(240px, 290px) minmax(0, 640px);
  justify-content: space-between;
  align-items: end;
  gap: 1.4rem;
  margin-top: auto;
  padding-top: clamp(1.6rem, 4vw, 3.2rem);
}

.operations-note {
  align-self: end;
  padding: 1.35rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 234, 196, 0.24);
  background:
    linear-gradient(160deg, rgba(43, 49, 57, 0.82), rgba(28, 34, 40, 0.88));
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.2);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  transform-origin: center bottom;
  will-change: transform;
}

.operations-note-label {
  display: inline-block;
  margin-bottom: .8rem;
  color: #fff0c8;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.operations-note p {
  color: #f1eadc;
  line-height: 1.65;
}

.operations-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.operations-point {
  position: relative;
  min-height: 190px;
  padding: 1.3rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 245, 227, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(28, 34, 40, 0.48);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  transform-origin: center bottom;
  will-change: transform;
}

.operations-note:hover,
.operations-note:focus-within {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(255, 234, 196, 0.38);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.28);
}

.operations-point:hover,
.operations-point:focus-within {
  z-index: 2;
  transform: translateY(-6px) scale(1.06);
  border-color: rgba(255, 245, 227, 0.32);
  box-shadow: 0 26px 42px rgba(0, 0, 0, 0.24);
}

.operations-point strong {
  display: block;
  max-width: 14ch;
  color: #fff3cd;
  font-size: 1.18rem;
  line-height: 1.2;
}

.operations-point:nth-child(3) strong {
  font-size: 1.24rem;
}

.operations-point p {
  color: #f2ecdf;
  line-height: 1.65;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.why-item {
  width: 97%;
  height: 100%;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 200, 108, 0.14);
  background:
    linear-gradient(165deg, rgba(32, 37, 44, 0.94), rgba(13, 16, 21, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0 14px, transparent 14px 28px);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 235, 191, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(240, 200, 108, 0.07), transparent 34%);
  pointer-events: none;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.38);
}

.why-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  margin-bottom: .9rem;
}

.why-icon i {
  color: #f0c86c;
  font-size: 2rem;
  text-shadow: 0 0 18px rgba(240, 200, 108, 0.16);
}

.why-item h3 {
  font-size: 1.4rem;
  margin-bottom: .55rem;
  color: #fff0c8;
}

.why-item p {
  color: #d7d0c5;
  font-size: 1.06rem;
  line-height: 1.65;
}

.partners {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(163, 222, 255, 0.28);
  background:
    radial-gradient(circle at 14% 50%, rgba(44, 164, 255, 0.16), transparent 30%),
    radial-gradient(circle at 82% 40%, rgba(22, 108, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(4, 20, 44, 0.94), rgba(3, 13, 31, 0.98));
  padding: 1rem 0;
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 16px 34px rgba(2, 9, 15, 0.42), inset 0 1px 0 rgba(206, 240, 255, 0.13);
  position: relative;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 27, 0.98), transparent 14%, transparent 86%, rgba(3, 11, 27, 0.98)),
    radial-gradient(circle at 50% 50%, rgba(116, 210, 255, 0.08), transparent 58%);
  pointer-events: none;
}

.partners-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: max-content;
  animation: slide 18s linear infinite;
  will-change: transform;
}

.partner-item {
  position: relative;
  flex: 0 0 auto;
  width: 248px;
  height: 126px;
  border-radius: 14px;
  border: 1px solid rgba(186, 224, 241, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.95));
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow: hidden;
  box-shadow:
    0 14px 28px rgba(1, 8, 14, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 22px rgba(29, 187, 255, 0.06);
}

.partner-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 32%),
    linear-gradient(90deg, transparent, rgba(95, 230, 255, 0.04), transparent);
  pointer-events: none;
}

.partner-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(124, 224, 255, 0.1);
  border-radius: 10px;
  pointer-events: none;
}

.partner-item img {
  position: relative;
  z-index: 1;
  width: min(100%, var(--partner-logo-width, 194px));
  height: auto;
  max-height: min(100%, var(--partner-logo-height, 74px));
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 14px rgba(97, 220, 255, 0.12));
  opacity: 0.94;
}

.partner-item--intelbras {
  padding: .35rem;
}

.partner-item--intelbras img {
  transform: translateY(-62px) scale(1.9);
  transform-origin: center;
  margin-top: 0;
}

.partner-item--ubiquiti img {
  transform: translateY(-25px) scale(1.28);
  transform-origin: center;
  margin-top: 0;
}

.phone-note {
  position: relative;
  z-index: 1;
  color: #d6e7f0;
  line-height: 1.55;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.contact-band {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 200, 108, 0.14), transparent 28%),
    linear-gradient(180deg, #171d24 0%, #1d242c 46%, #151b22 100%);
}

.partner-section {
  padding-top: 3.2rem;
  padding-bottom: 1.2rem;
  background: transparent;
}

.partner-section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.partner-section-heading {
  text-align: center;
}

.partner-section-heading .section-title {
  margin-bottom: .85rem;
  color: #ffffff;
  font-size: clamp(1.95rem, 3.4vw, 2.65rem);
}

.partner-section-heading p {
  max-width: 52rem;
  margin: 0;
  color: rgba(246, 248, 250, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.partner-link-copy {
  margin: -.9rem 0 .1rem;
  color: rgba(246, 248, 250, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.partner-card-single {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 290px);
  min-height: 330px;
  padding: 1.7rem 1.2rem 1.7rem .7rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: #ffffff;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .28s ease;
}

.partner-card-single:hover,
.partner-card-single:focus-visible {
  transform: translateY(-8px);
}

.partner-card-single img {
  width: min(100%, 260px);
  height: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
  transform: translateX(-4px);
  filter: none;
}

@media (max-width: 720px) {
  .partner-section {
    padding-top: 2.8rem;
    padding-bottom: 1rem;
  }

  .partner-section-container {
    gap: 1.5rem;
  }

  .partner-card-single {
    width: min(100%, 250px);
    min-height: 285px;
    padding: 1.3rem .9rem 1.3rem .45rem;
  }

  .partner-card-single img {
    width: min(100%, 228px);
  }
}

.contact-section {
  position: relative;
  padding-top: .35rem;
  padding-bottom: 2rem;
}

#contato {
  background: transparent;
}

.contact-section::before {
  content: none;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 430px);
  gap: 1.6rem;
  align-items: end;
}

.contact-text {
  padding: 3.2rem 0 1.2rem;
}

.contact-text .section-title {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  margin-bottom: .7rem;
}

.contact-text p {
  color: rgba(248, 243, 235, 0.9);
  margin-bottom: .35rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.contact-text .btn {
  margin-top: 1.25rem;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.contact-text .btn-primary {
  background: goldenrod;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 228, 0.42),
    0 14px 24px rgba(182, 133, 45, 0.22);
}

.contact-phone-card {
  align-self: start;
  justify-self: end;
  width: min(100%, 430px);
  margin-top: clamp(2rem, 5vw, 4.5rem);
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(240, 200, 108, 0.14);
  background:
    linear-gradient(160deg, rgba(50, 58, 68, 0.92), rgba(25, 30, 38, 0.96)),
    rgba(28, 39, 50, 0.72);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 231, 183, 0.04),
    0 0 36px rgba(213, 166, 58, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    filter .28s ease;
}

.contact-phone-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 166, 58, 0.18), transparent 68%);
  pointer-events: none;
  opacity: .9;
  transition: opacity .28s ease, transform .28s ease;
}

.contact-phone-card:hover,
.contact-phone-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(240, 200, 108, 0.24);
  box-shadow:
    0 30px 56px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 233, 185, 0.08),
    0 0 52px rgba(213, 166, 58, 0.16);
  filter: brightness(1.06) saturate(1.05);
}

.contact-phone-card:hover::before,
.contact-phone-card:focus-within::before {
  opacity: 1;
  transform: scale(1.08);
}

.phone-label {
  position: relative;
  z-index: 1;
  margin-bottom: .35rem;
  color: #cfa349;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.phone {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: clamp(1.75rem, 2.9vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff5da;
  text-decoration: none;
  -webkit-text-fill-color: #fff5da;
  margin-bottom: .5rem;
}

.phone:visited,
.phone:hover,
.phone:focus-visible,
.phone:active {
  color: #fff;
  text-decoration: none;
  -webkit-text-fill-color: #fff;
}

a[x-apple-data-detectors],
.contact-phone-card a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: inherit !important;
  font: inherit !important;
  line-height: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

.phone-note {
  position: relative;
  z-index: 1;
  color: #c5dbe8;
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 32ch;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  background: rgba(3, 11, 17, 0.45);
  backdrop-filter: blur(14px);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: center;
}

.footer-wrap p {
  color: #d7e8f2;
  font-size: .95rem;
  letter-spacing: .01em;
}

.site-footer .reveal-target,
.site-footer .reveal-target.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: linear-gradient(140deg, #12b86a, #1de57e);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(22, 201, 109, 0.45);
  border: 2px solid rgba(255, 255, 255, .6);
  transition: transform .2s ease;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: scale(1.06);
}

.wa-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.reveal-target {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.985);
  filter: blur(6px) saturate(0.88);
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1),
    transform .9s cubic-bezier(.22,1,.36,1),
    filter .9s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0) saturate(1);
}

.partner-card-single.reveal-target.is-visible:hover,
.partner-card-single.reveal-target.is-visible:focus-visible {
  transform: translate3d(0, -8px, 0) scale(1);
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 1000px) {
  .hero-grid,
  .about-layout,
  .services-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(2.2rem, 4.9vw, 3rem);
    text-align: center;
    margin-inline: auto;
    width: 100%;
  }

  .hero-grid,
  .about-layout,
  .services-grid,
  .why-grid,
  .contact-grid {
    justify-items: center;
  }

  .hero {
    padding: 2.75rem 0 1.25rem;
  }

  .hero-grid {
    gap: 1rem;
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-top: .75rem;
    padding-inline: 0;
    text-align: center;
    justify-self: center;
  }

  .hero-copy > h1,
  .hero-copy > h2,
  .cta-row {
    margin-inline: auto;
  }

  .hero-side {
    width: 100%;
    max-width: 980px;
    justify-self: center;
  }

  .hero-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: center;
  }

  .cta-row {
    justify-content: flex-start;
  }

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

  .hero-media--image {
    width: min(100%, 560px);
    justify-self: center;
  }

  .contact-grid {
    justify-items: center;
    align-items: start;
    gap: 2rem;
  }

  .contact-text {
    padding: 2rem 0 0;
    text-align: center;
    width: 100%;
    max-width: 34rem;
    justify-self: center;
    margin-inline: auto;
  }

  .contact-text p + p {
    margin-top: .5rem;
  }

  .contact-text .btn {
    margin-top: 1.6rem;
    width: fit-content;
    min-width: 0;
    max-width: calc(100% - 1.5rem);
    margin-inline: auto;
    padding-inline: 1.35rem;
  }

  .contact-phone-card {
    align-self: center;
    justify-self: center;
    width: min(100% - 1.5rem, 360px);
    max-width: 360px;
    margin-top: 0;
    margin-inline: auto;
    margin-bottom: 3rem;
    padding-inline: 1rem;
    top: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .operations-showcase {
    min-height: clamp(640px, 92vw, 760px);
    padding: clamp(1.4rem, 4vw, 2.4rem);
    background-position: 68% center;
  }

  .operations-showcase::before {
    background:
      linear-gradient(90deg, rgba(36, 42, 49, 0.54) 0%, rgba(36, 42, 49, 0.3) 42%, rgba(36, 42, 49, 0.12) 100%),
      linear-gradient(180deg, rgba(255, 233, 190, 0.14), rgba(14, 18, 23, 0.1) 30%, rgba(14, 18, 23, 0.18) 100%);
  }

  .operations-intro {
    max-width: 44rem;
    text-align: center;
    margin-inline: auto;
  }

  .operations-intro .section-title,
  .operations-lead {
    margin-inline: auto;
  }

  .operations-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.8rem;
    justify-items: center;
  }

  .operations-note,
  .operations-points,
  .operations-point {
    width: 100%;
  }

  .operations-note {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .operations-points {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .operations-point {
    min-height: auto;
    text-align: center;
  }

  .operations-point strong {
    max-width: none;
  }

  .service-card,
  .service-card:nth-child(even),
  .service-card--security:nth-child(even),
  .service-card--projects {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 620px;
    align-items: center;
    justify-self: center;
    margin-inline: auto;
    padding: 1rem .6rem;
    gap: 1.15rem;
  }

  .service-card:nth-child(even) .service-content,
  .service-card--security .service-content,
  .service-card--projects .service-content,
  .service-card:nth-child(even) ul,
  .service-card--security ul,
  .service-card--projects ul,
  .service-card ul,
  .service-content {
    grid-column: auto;
  }

  .service-media,
  .service-card:nth-child(even) .service-media,
  .service-card--security .service-media,
  .service-card--projects .service-media {
    order: 2;
    width: 100%;
    max-width: 72%;
    align-self: center;
    padding: 0;
    min-height: auto;
  }

  .service-card--infra .service-media {
    max-width: 72%;
    min-height: 180px;
  }

  .service-card--infra .service-media img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .service-content,
  .service-card:nth-child(even) .service-content,
  .service-card--security .service-content,
  .service-card--projects .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
    width: 100%;
    max-width: 31rem;
    align-self: center;
    margin-inline: auto;
    padding-inline: 0;
    text-align: center;
    width: min(100% - 1.25rem, 31rem);
  }

  .service-media {
    border-radius: 20px;
  }

  .service-media img,
  .service-card--security .service-media img,
  .service-card--projects .service-media img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .service-card--infra .service-media {
    overflow: hidden;
  }

  .service-card--infra .service-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .service-card ul,
  .service-card--security ul,
  .service-card--projects ul {
    order: 3;
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 31rem;
    align-self: center;
    margin-inline: auto;
    padding-inline: .1rem;
    width: min(100% - 1.25rem, 31rem);
  }

  .service-card,
  .service-content,
  .service-card ul,
  .operations-intro,
  .operations-note,
  .operations-points {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .nav-wrap {
    gap: .8rem;
  }

  .about-command-stats {
    grid-template-columns: 1fr;
  }

  .menu-shell {
    gap: .9rem;
  }

  .menu {
    gap: 1.35rem;
  }

  .whatsapp-cta {
    min-height: 52px;
  }

  .about-certificates-wrap {
    grid-area: cert;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    display: grid;
    grid-template-columns: minmax(300px, 400px) minmax(320px, 420px);
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .certificates-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 400px;
  }

  .about-certificates {
    max-width: 420px;
    justify-self: end;
  }

  .about-certificates-cloud {
    width: min(100%, 420px);
    margin-top: 0;
    align-self: center;
  }

  .service-card--security:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  }

  .service-card--projects {
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .menu {
    width: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
  }

  .menu li {
    flex: 0 1 auto;
  }

  .menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(1rem, .95vw, 1.08rem);
  }

  .nav-right {
    display: flex;
  }

  .nav-right .whatsapp-cta {
    min-height: 46px;
    padding-inline: .85rem;
    font-size: .82rem;
  }

  .menu-shell .social-icons {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: #d3d3d3;
  }

  :root {
    --header-height: clamp(116px, 15vw, 132px);
    --header-offset: calc(var(--header-height) + 12px);
  }

  .nav-wrap {
    min-height: var(--header-height);
    gap: .55rem;
  }

  .logo {
    max-width: 148px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    order: 3;
    margin-left: 0;
    margin-right: .2rem;
  }

  .menu-shell {
    position: fixed;
    inset: calc(var(--header-height) + .75rem) .75rem auto .75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(232, 232, 232, 0.96), rgba(206, 206, 206, 0.94)),
      radial-gradient(circle at 50% 0%, rgba(240, 200, 108, 0.18), transparent 42%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
      0 24px 56px rgba(2, 10, 18, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.58),
      inset 0 -1px 0 rgba(184, 134, 11, 0.16);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    padding: .75rem 1rem 1.1rem;
    transform: translateY(-10px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, box-shadow .24s ease;
    overflow: hidden;
  }

  .menu-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 38%),
      linear-gradient(90deg, transparent, rgba(213, 166, 58, 0.16), transparent);
    pointer-events: none;
  }

  .menu-shell.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    margin-inline: auto;
    gap: .38rem;
    padding-block: 0;
    position: relative;
    z-index: 1;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: clamp(1.24rem, 3.2vw, 1.5rem);
    padding: .72rem .75rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .menu a::after {
    display: none;
  }

  .menu a:hover,
  .menu a:focus-visible {
    background: rgba(255, 241, 183, 0.22);
    border-color: rgba(184, 134, 11, 0.28);
    color: #000000;
  }

  .nav-right {
    display: none;
    gap: .5rem;
    order: 2;
    margin-left: auto;
    margin-right: .15rem;
  }

  .nav-right .whatsapp-cta {
    display: inline-flex;
    min-height: 42px;
    padding-inline: .72rem;
    font-size: .74rem;
  }

  .menu-shell .social-icons {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: .4rem;
  }

  .menu-shell .whatsapp-cta {
    min-height: 50px;
    padding-inline: 1.35rem;
    font-size: 1rem;
    border-radius: 999px;
  }
}

@media (max-width: 760px) {
  .about-command-main,
  .about-command-stats {
    border-radius: 22px;
  }

  .about-command-main {
    padding: 1.25rem 1.15rem 1.35rem;
  }

  .about-command-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-command-media img {
    width: min(100%, 240px);
    border-radius: 20px;
  }

  .about-command-media {
    margin-bottom: 1rem;
  }

  .about-command-stats {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1.25rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-command-stats::before {
    display: none;
  }

  .about-stat {
    padding: 1rem 1rem 1rem 1.1rem;
  }

  body {
    padding-bottom: 0;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  section {
    padding: 3.75rem 0;
  }

  .site-header {
    background: #d3d3d3;
  }

  :root {
    --header-height: 124px;
    --header-offset: calc(var(--header-height) + 12px);
  }

  .nav-wrap {
    min-height: var(--header-height);
    gap: .55rem;
  }

  .logo {
    max-width: 148px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    order: 3;
    margin-left: 0;
    margin-right: .2rem;
  }

  .menu-shell {
    position: fixed;
    inset: calc(var(--header-height) + .75rem) .75rem auto .75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(232, 232, 232, 0.96), rgba(206, 206, 206, 0.94)),
      radial-gradient(circle at 50% 0%, rgba(240, 200, 108, 0.18), transparent 42%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
      0 24px 56px rgba(2, 10, 18, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.58),
      inset 0 -1px 0 rgba(184, 134, 11, 0.16);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    padding: .75rem 1rem 1.1rem;
    transform: translateY(-10px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, box-shadow .24s ease;
    overflow: hidden;
  }

  .menu-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 38%),
      linear-gradient(90deg, transparent, rgba(213, 166, 58, 0.16), transparent);
    pointer-events: none;
  }

  .menu-shell.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: min(100%, 320px);
    margin-inline: auto;
    gap: .38rem;
    padding-block: 0;
    position: relative;
    z-index: 1;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: clamp(1.24rem, 3.2vw, 1.5rem);
    padding: .72rem .75rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .menu a::after {
    display: none;
  }

  .menu a:hover,
  .menu a:focus-visible {
    background: rgba(255, 241, 183, 0.22);
    border-color: rgba(184, 134, 11, 0.28);
    color: #000000;
  }

  .nav-right {
    display: none;
    gap: .5rem;
    order: 2;
    margin-left: auto;
    margin-right: .15rem;
  }

  .nav-right .whatsapp-cta {
    display: inline-flex;
    min-height: 42px;
    padding-inline: .72rem;
    font-size: .74rem;
  }

  .menu-shell .social-icons {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: .4rem;
  }

  .menu-shell .whatsapp-cta {
    min-height: 50px;
    padding-inline: 1.35rem;
    font-size: 1rem;
    border-radius: 999px;
  }

  .hero {
    padding: 3.6rem 0 1.5rem;
  }

  .hero-copy {
    padding-top: .5rem;
    text-align: center;
    justify-self: center;
  }

  .hero-copy > h1,
  .hero-copy > h2 {
    font-size: clamp(1.58rem, 5.35vw, 1.9rem);
    line-height: 1.08;
    max-width: 30ch;
    text-align: center;
  }

  .cta-row {
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .hero .cta-row {
    margin-bottom: 1.2rem;
  }

  .btn {
    width: min(100%, 320px);
    min-height: 58px;
    padding: 1rem 1.4rem;
    font-size: .98rem;
    border-radius: 16px;
    margin-inline: auto;
  }

  .hero-media {
    width: 100%;
  }

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

  .hero-summary {
    grid-template-columns: 1fr;
    gap: .6rem;
    text-align: center;
  }

  .hero-summary span {
    width: min(100% - 1.5rem, 320px);
    margin-inline: auto;
  }

  #servicos .section-title {
    text-align: center;
    margin-inline: auto;
  }

  .section-title {
    font-size: clamp(2rem, 7.2vw, 2.55rem);
    letter-spacing: -0.01em;
    text-align: center;
    margin-inline: auto;
    width: 100%;
  }

  .section-subtitle {
    margin-bottom: 1.4rem;
    font-size: .96rem;
    text-align: center;
    margin-inline: auto;
  }

  .about-command,
  .about-command-main,
  .about-command-content,
  .about-command-copy,
  .about-command-stats,
  .services-command,
  .services-intel,
  .services-board,
  .service-panel,
  .operations-showcase,
  .operations-layout,
  .contact-grid,
  .contact-text,
  .contact-phone-card,
  .footer-wrap {
    width: 100%;
    margin-inline: auto;
  }

  .about-command-main,
  .about-command-copy,
  .about-command-stats,
  .about-stat,
  .services-intel,
  .service-panel,
  .contact-text,
  .contact-phone-card {
    text-align: center;
  }

  .about-command-label,
  .services-eyebrow,
  .operations-eyebrow {
    justify-content: center;
    margin-inline: auto;
  }

  .about-command-label::before,
  .services-eyebrow::before {
    flex: 0 0 auto;
  }

  .about-command-main h3,
  .about-command-main p,
  .service-panel .service-intro,
  .contact-text p,
  .phone-note {
    margin-inline: auto;
  }

  .about-command-media {
    justify-self: center;
  }

  .about-stat::before {
    left: 50%;
    top: .75rem;
    bottom: auto;
    width: 56px;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(240, 200, 108, 0), rgba(240, 200, 108, 0.95), rgba(240, 200, 108, 0));
  }

  .about-stat strong {
    margin-top: .85rem;
  }

  .services-intel .section-title,
  .services-intel .section-subtitle {
    text-align: center;
    margin-inline: auto;
  }

  .services-brief-line {
    text-align: center;
  }

  .service-panel-top {
    justify-content: center;
    gap: .9rem;
  }

  .service-panel h3,
  .service-panel .service-intro {
    max-width: none;
  }

  .service-list li {
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
    min-height: 4.25rem;
  }

  .service-list li::before {
    display: none;
  }

  .service-card,
  .service-content,
  .service-card ul,
  .operations-intro,
  .operations-note,
  .operations-points,
  .contact-text,
  .contact-phone-card {
    text-align: center;
  
    height: fit-content;
    align-self: start;
  }

  .about-locations ul {
    justify-items: center;
    gap: 1rem;
  }

  .about-locations li {
    width: 100%;
    max-width: 430px;
  }

  .about-certificates-wrap {
    display: flex;
    flex-direction: column;
    gap: .95rem;
    align-items: center;
    margin-top: .35rem;
    margin-bottom: -2.5rem;
  }

  .about-certificates-wrap {
    margin-bottom: 0;
  }

  .about-certificates {
    max-width: 100%;
  }

  .certificates-grid--differentials {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: .8rem;
  }

  .certificates-grid--differentials .certificate-item {
    max-width: none;
    height: auto;
    min-height: 112px;
  }

  .certificates-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 388px;
    column-gap: 2rem;
    row-gap: 2.45rem;
  }

  .certificate-item {
    grid-column: span 2;
    width: 100%;
    max-width: 120px;
    height: 102px;
  }

  .certificate-item:nth-child(4) {
    grid-column: 2 / span 2;
    margin-top: 0;
    margin-bottom: .8rem;
  }

  .certificate-item:nth-child(5) {
    grid-column: 4 / span 2;
    margin-top: 0;
    margin-bottom: .9rem;
  }

  .certificate-item:nth-child(3) img,
  .certificate-item:nth-child(4) img,
  .certificate-item:nth-child(5) img {
    transform: scale(1.18);
  }

  .certificate-item:nth-child(3) img {
    transform: scale(1.22);
  }

  .certificate-item:nth-child(4) img {
    transform: scale(1.27);
  }

  .certificate-item:nth-child(5) img {
    transform: scale(1.24);
  }

  .about-certificates-cloud {
    width: min(100%, 300px);
    margin-top: -1.1rem;
    margin-bottom: 1.4rem;
  }

  .about {
    padding-top: 2.4rem;
    padding-bottom: 3.2rem;
  }

  .about-why {
    margin-top: 0;
  }

  .panel,
  .service-card,
  .why-item {
    border-radius: 18px;
  }

  .service-card,
  .why-item {
    padding: 1rem 1.45rem;
  }

  .service-card {
    width: min(100% - 1.5rem, 520px);
    margin-inline: auto;
  }

  .service-card:nth-child(even),
  .service-card--security:nth-child(even) {
    width: min(100% - 1.5rem, 520px);
    max-width: 520px;
    margin-inline: auto;
    padding: 1rem 1.45rem;
  }

  .service-card--security {
    width: min(100% - 1.5rem, 520px);
    margin-inline: auto;
    padding-inline: 1.45rem;
  }

  .service-content,
  .service-card:nth-child(even) .service-content,
  .service-card--security .service-content,
  .service-card--projects .service-content,
  .service-card ul,
  .service-card:nth-child(even) ul,
  .service-card--security ul,
  .service-card--projects ul {
    padding-inline: .1rem;
  }

  .service-content,
  .service-card:nth-child(even) .service-content,
  .service-card--security .service-content,
  .service-card--projects .service-content,
  .service-card ul,
  .service-card:nth-child(even) ul,
  .service-card--security ul,
  .service-card--projects ul {
    width: min(100% - 1rem, 29rem);
  }

  .service-card ul {
    grid-template-columns: 1fr;
  }

  .service-card ul {
    gap: .46rem;
    font-size: .92rem;
  }

  #servicos .section-title {
    margin-top: .6rem;
  }

  .partner-item {
    width: 172px;
    height: 92px;
  }

  .phone {
    font-size: clamp(1.32rem, 7vw, 1.75rem);
  }

  .phone-note {
    max-width: none;
  }

  .footer-wrap p {
    font-size: .88rem;
  }

  .mobile-quick-actions {
    display: none;
  }

  .wa-float {
    width: 62px;
    height: 62px;
    right: .7rem;
    bottom: calc(.7rem + env(safe-area-inset-bottom));
  }

  .wa-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 640px) {
  .logo {
    max-width: 124px;
  }

  .nav-wrap {
    gap: .4rem;
  }

  .nav-right .whatsapp-cta {
    min-height: 40px;
    padding-inline: .62rem;
    font-size: .68rem;
    white-space: nowrap;
  }

  .menu-shell .whatsapp-cta {
    white-space: nowrap;
  }

  .about-header-line .section-title {
    padding-left: 1rem;
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .about-command-main {
    padding: 1.2rem 1.15rem 1.3rem;
  }

  .about-command-media {
    margin-bottom: 1.4rem;
  }

  .about-command-main::after {
    width: 56px;
    height: 56px;
  }

  .about-command-label {
    letter-spacing: .16em;
    font-size: .76rem;
  }

  .about-command-label::before {
    width: 28px;
  }

  .about-stat {
    padding-inline: .95rem;
  }

  .about-stat strong {
    font-size: 1.14rem;
  }

  .about-stat span {
    font-size: .98rem;
  }

  .hero-copy > h1,
  .hero-copy > h2 {
    font-size: clamp(1.42rem, 5.75vw, 1.68rem);
    max-width: 27ch;
  }

  .section-title {
    font-size: clamp(1.9rem, 7.4vw, 2.3rem);
    text-align: center;
    margin-inline: auto;
    width: 100%;
  }

  .whatsapp-cta {
    white-space: normal;
  }

  .about {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
  }

  .services-grid {
    gap: 1.8rem;
    margin-top: 2rem;
  }

  .service-card {
    gap: .9rem;
  }

  #servicos {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
  }

  .partner-item--ubiquiti img {
    transform: translateY(-14px) scale(1.2);
    margin-top: 0;
  }

  .partner-item--intelbras img {
    transform: translateY(-32px) scale(1.6);
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .logo {
    max-width: 132px;
  }

  .menu-shell {
    inset: 122px .45rem auto .45rem;
    padding: .9rem .75rem;
  }

  .hero {
    padding: 3.4rem 0 2.4rem;
  }

  .hero-copy > h1,
  .hero-copy > h2 {
    font-size: clamp(1.32rem, 6.4vw, 1.55rem);
    max-width: 25ch;
  }

  .hero p,
  .about-text p,
  .about-command-main p,
  .about-stat span,
  .service-panel .service-intro,
  .service-list li,
  .about-locations p,
  .operations-note p,
  .operations-point p,
  .contact-text p {
    font-size: 1rem;
  }

  .btn {
    min-height: 56px;
    min-width: 100%;
    font-size: .95rem;
  }

  .about-command-main,
  .about-command-stats,
  .services-intel,
  .service-panel,
  .about-certificates,
  .service-card,
  .contact-phone-card {
    border-radius: 16px;
  }

  .service-card {
    padding: .9rem 1.05rem;
  }

  .service-card {
    width: min(100% - 1rem, 410px);
    max-width: 100%;
  }

  .operations-showcase {
    width: min(100% - 1rem, 100%);
    margin-inline: auto;
    border-radius: 22px;
  }

  .operations-points {
    gap: .85rem;
  }

  .operations-point {
    min-height: 0;
  }

  .contact-phone-card {
    width: min(100% - 1rem, 330px);
    max-width: 330px;
    padding-inline: 1.05rem;
  }

  .service-card:nth-child(even),
  .service-card--security:nth-child(even) {
    width: min(100% - 1rem, 410px);
    max-width: 410px;
    padding: .9rem 1.05rem;
  }

  .service-card--security {
    width: min(100% - 1rem, 410px);
    max-width: 100%;
    padding-inline: 1.05rem;
  }

  .about-layout {
    gap: 1rem;
  }

  .about-card--story,
  .about-locations,
  .about-certificates-wrap {
    width: min(100% - 1rem, 440px);
  }

  .about-why {
    margin-top: 0;
  }

  .about-certificates {
    width: 100%;
    padding: .95rem .85rem;
  }

  .certificates-grid {
    gap: 1.25rem;
  }

  .certificate-item {
    width: min(100%, 100px);
    height: 86px;
  }

  .about-certificates-cloud {
    width: min(100%, 250px);
  }

  .service-media {
    border-radius: 16px;
  }

  .service-card--infra .service-media {
    max-width: 72%;
    min-height: 150px;
  }

  .service-card--infra .service-media img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .service-media img,
  .service-card--security .service-media img,
  .service-card--projects .service-media img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .service-card--infra .service-media {
    overflow: hidden;
  }

  .service-card--infra .service-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .service-card h3 {
    font-size: clamp(1.3rem, 6.4vw, 1.6rem);
  }

  .service-content,
  .service-card:nth-child(even) .service-content,
  .service-card--security .service-content,
  .service-card--projects .service-content,
  .service-card ul,
  .service-card:nth-child(even) ul,
  .service-card--security ul,
  .service-card--projects ul {
    padding-inline: 0;
  }

  .service-content,
  .service-card:nth-child(even) .service-content,
  .service-card--security .service-content,
  .service-card--projects .service-content,
  .service-card ul,
  .service-card:nth-child(even) ul,
  .service-card--security ul,
  .service-card--projects ul {
    width: min(100% - 1.25rem, 100%);
  }

  .service-card li {
    padding: .72rem .75rem;
    font-size: .9rem;
  }

  .contact-text .btn {
    width: fit-content;
    min-width: 0;
    max-width: calc(100% - 1.5rem);
    margin-inline: auto;
    padding-inline: 1.35rem;
  }

  .operations-showcase {
    width: min(100% - 1.25rem, 100%);
    margin-inline: auto;
    padding: 1.2rem;
    border-radius: 18px;
    background-position: 64% center;
  }

  .operations-lead {
    font-size: .97rem;
  }

  .operations-note,
  .operations-point {
    border-radius: 18px;
  }

  .partners {
    margin-top: 2.2rem;
    padding: .8rem 0;
  }

  .partners-track {
    gap: 1rem;
  }

  .partner-item {
    width: 148px;
    height: 84px;
    padding: .7rem;
  }

  .partner-item--intelbras img {
    transform: translateY(-30px) scale(1.45);
    margin-top: 0;
  }

  .partner-item--ubiquiti img {
    transform: translateY(-8px) scale(1.12);
    margin-top: 0;
  }

  .contact-grid {
    gap: 1rem;
  }

  .contact-phone-card {
    padding: 1rem .9rem;
  }

  .phone {
    font-size: clamp(1.2rem, 7.2vw, 1.55rem);
  }
}

@media (max-width: 390px) {
  .hero-copy > h1,
  .hero-copy > h2 {
    font-size: clamp(1.2rem, 7.2vw, 1.42rem);
    max-width: 23ch;
  }

  .section-title {
    font-size: clamp(1.8rem, 8.6vw, 2.15rem);
    text-align: center;
    margin-inline: auto;
    width: 100%;
  }

  .certificate-item {
    width: min(100%, 104px);
    height: 80px;
  }

  .partner-item {
    width: 136px;
    height: 78px;
  }

  .partner-item--intelbras img {
    transform: translateY(-27px) scale(1.28);
    margin-top: 0;
  }

  .partner-item--ubiquiti img {
    transform: translateY(-12px) scale(1.05);
    margin-top: 0;
  }

  .wa-float {
    width: 58px;
    height: 58px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1001px) and (max-width: 1199px) {
  .service-card {
    grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
  }

  .service-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 290px);
  }

  .service-card--security:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }

  .service-card--projects {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  }

  .service-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-layout {
    gap: 1.5rem 1.8rem;
  }

  .partner-item {
    width: 220px;
  }
}

@media (min-width: 1600px) {
  .container {
    width: min(100% - 3rem, 1320px);
  }

  .hero-grid,
  .operations-layout {
    gap: 2.4rem 3rem;
  }

  .about-layout {
    gap: 1.3rem;
  }

  .services-grid {
    gap: 2.3rem;
  }
}

@media (min-width: 1400px) {
  .site-decor--hero-left {
    left: -2rem;
  }

  .site-decor--hero-right {
    right: 0;
  }

  .site-decor--about-right {
    right: -3rem;
    bottom: -3rem;
  }

  .site-decor--about-top-left {
    left: var(--about-top-left-offset);
    top: -1rem;
  }

  .site-decor--services-left {
    left: -10rem;
    top: .8rem;
  }

  .site-decor--cyber-right {
    right: -2rem;
  }

  .site-decor--contact-left {
    left: -3rem;
  }
}

@media (min-width: 901px) {
  .menu-shell .social-icons {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .mobile-action {
    transition: none;
  }
}

/* Keep section decor consistent with the notebook layout across breakpoints. */
.site-decor--about-right {
  right: clamp(-5rem, -4vw, -1rem);
  bottom: clamp(-4rem, -4vw, -1rem);
  width: clamp(380px, 46vw, 660px);
  opacity: 1;
}

.site-decor--about-top-left {
  left: var(--about-top-left-offset);
  top: clamp(-2rem, -2vw, -1.5rem);
  width: clamp(460px, 52vw, 860px);
  opacity: 1;
}

.site-decor--services-left {
  left: -12rem;
  top: clamp(-2rem, -2vw, -1.5rem);
  width: clamp(460px, 52vw, 860px);
  opacity: 1;
}

.site-decor--hero-left {
  left: clamp(-5rem, -3vw, -1rem);
  top: clamp(3rem, 10vw, 8rem);
  width: clamp(180px, 22vw, 360px);
  opacity: 1;
}

.site-decor--hero-right {
  right: clamp(-4rem, -2vw, 0rem);
  top: clamp(1rem, 4vw, 4rem);
  width: clamp(220px, 26vw, 420px);
  opacity: 1;
}

.site-decor--cyber-right {
  right: clamp(-5rem, -4vw, -1rem);
  top: clamp(2rem, 8vw, 7rem);
  width: clamp(220px, 28vw, 460px);
  opacity: 1;
}

.site-decor--contact-left {
  left: clamp(-7rem, -6vw, -1rem);
  top: clamp(2rem, 8vw, 6rem);
  width: clamp(220px, 30vw, 480px);
  opacity: 1;
}

@media (min-width: 861px) and (max-width: 1200px) {
  .site-decor--about-right {
    right: -2.5rem;
    bottom: -2.25rem;
    width: clamp(300px, 38vw, 500px);
  }

  .site-decor--about-top-left {
    left: -8rem;
    top: 2rem;
    width: clamp(340px, 42vw, 620px);
  }

  .site-decor--services-left {
    left: -8rem;
    top: 4rem;
    width: clamp(340px, 42vw, 620px);
  }

  .site-decor--hero-left {
    left: -2.5rem;
    top: 4rem;
    width: clamp(150px, 18vw, 260px);
  }

  .site-decor--hero-right {
    right: -1.5rem;
    top: 2rem;
    width: clamp(180px, 22vw, 320px);
  }

  .site-decor--cyber-right {
    right: -2.5rem;
    top: 3rem;
    width: clamp(180px, 22vw, 320px);
  }

  .site-decor--contact-left {
    left: -3.5rem;
    top: 2.5rem;
    width: clamp(180px, 24vw, 340px);
  }
}
.services-command {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.services-intel {
  min-width: 0;
  position: sticky;
  top: 110px;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid rgba(240, 200, 108, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(14, 18, 23, 0.98), rgba(8, 10, 14, 0.98)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 48px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.services-intel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f0c86c, rgba(240, 200, 108, 0.1));
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f0c86c;
}

.services-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}

.services-intel .section-title {
  margin-top: .9rem;
  margin-bottom: .85rem;
  text-align: left;
}

.services-intel .section-subtitle {
  text-align: left;
  max-width: 42ch;
}

.services-brief {
  display: grid;
  gap: .9rem;
  margin-top: 1.6rem;
}

.services-brief-line {
  display: grid;
  gap: .28rem;
  padding: .9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(240, 200, 108, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.services-brief-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9fabae;
}

.services-brief-line strong {
  color: #f8f2e5;
  font-size: .98rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.services-tags span {
  display: inline-flex;
  align-items: center;
  padding: .7rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 200, 108, 0.12);
  background: rgba(240, 200, 108, 0.05);
  color: #efe5cc;
  font-size: .82rem;
  font-weight: 700;
}

.services-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  min-width: 0;
}

.service-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 26px;
  border: 1px solid rgba(240, 200, 108, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 25, 31, 0.97), rgba(9, 11, 14, 0.98)),
    radial-gradient(circle at top right, rgba(240, 200, 108, 0.08), transparent 32%);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(240, 200, 108, 0.08), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 42px);
  opacity: .7;
  pointer-events: none;
}

.service-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 200, 108, 0.28);
  box-shadow: 0 30px 54px rgba(0, 0, 0, 0.34);
}

.service-panel-top,
.service-panel > *,
.service-list > * {
  position: relative;
  z-index: 1;
}

.service-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 34px;
  padding-inline: .75rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 200, 108, 0.18);
  background: rgba(240, 200, 108, 0.06);
  color: #f0c86c;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-panel-top i {
  font-size: 1.35rem;
  color: #f5ebcf;
}

.service-panel h3 {
  color: #fff3d0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: .7rem;
  max-width: 14ch;
  overflow-wrap: anywhere;
}

.service-panel .service-intro {
  margin-bottom: 1.15rem;
  max-width: 38ch;
  overflow-wrap: anywhere;
}

.service-list {
  list-style: none;
  display: grid;
  gap: .7rem;
  margin-top: auto;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: #e7e0d4;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.service-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: .45rem;
  border-radius: 2px;
  background: #f0c86c;
  box-shadow: 0 0 0 4px rgba(240, 200, 108, 0.12);
}

.service-panel--rural {
  background:
    linear-gradient(180deg, rgba(32, 27, 18, 0.97), rgba(11, 10, 8, 0.98)),
    radial-gradient(circle at top right, rgba(240, 200, 108, 0.08), transparent 32%);
}

.service-panel--urban {
  background:
    linear-gradient(180deg, rgba(17, 23, 31, 0.97), rgba(9, 11, 14, 0.98)),
    radial-gradient(circle at top right, rgba(127, 170, 196, 0.14), transparent 30%);
}

.service-panel--active {
  background:
    linear-gradient(180deg, rgba(29, 22, 15, 0.97), rgba(10, 10, 10, 0.98)),
    radial-gradient(circle at top right, rgba(240, 200, 108, 0.12), transparent 30%);
}

.service-panel--monitoring {
  background:
    linear-gradient(180deg, rgba(14, 21, 24, 0.97), rgba(7, 10, 12, 0.98)),
    radial-gradient(circle at top right, rgba(99, 170, 164, 0.12), transparent 30%);
}

@media (max-width: 1080px) {
  .services-command {
    grid-template-columns: 1fr;
  }

  .services-intel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  .services-intel .section-subtitle,
  .service-panel .service-intro {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .services-board {
    grid-template-columns: 1fr;
  }

  .services-command {
    gap: 1.25rem;
  }

  .service-panel h3 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .services-brief-line {
    padding: .85rem .9rem;
  }

  .services-intel .section-subtitle,
  .service-panel .service-intro {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .services-brief-label {
    font-size: .76rem;
  }

  .services-brief-line strong {
    font-size: 1rem;
    line-height: 1.55;
  }

  .services-tags {
    gap: .55rem;
  }

  .services-tags span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .service-panel-top {
    gap: .8rem;
  }

  .service-panel-top i {
    font-size: 1.15rem;
  }
}

@media (max-width: 560px) {
  .services-intel,
  .service-panel {
    border-radius: 22px;
    padding: 1.1rem;
  }

  .services-intel .section-title {
    font-size: clamp(1.7rem, 5.8vw, 2rem);
  }

  .services-intel .section-subtitle,
  .service-panel .service-intro {
    font-size: 1rem;
  }

  .service-panel h3 {
    font-size: 1.35rem;
  }

  .services-tags span,
  .service-index {
    font-size: .76rem;
  }

  .service-list li {
    padding: .82rem 1rem;
    font-size: .98rem;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  .services-command {
    gap: 1rem;
  }

  .services-intel,
  .service-panel {
    padding: 1rem;
    border-radius: 20px;
  }

  .services-eyebrow {
    gap: .45rem;
    font-size: .68rem;
    letter-spacing: .14em;
  }

  .services-eyebrow::before {
    width: 24px;
  }

  .services-brief {
    margin-top: 1.2rem;
  }

  .services-brief-line strong,
  .service-list li {
    font-size: 1.02rem;
  }

  .service-index {
    min-width: 44px;
    height: 30px;
    padding-inline: .65rem;
  }

  .service-panel h3 {
    font-size: 1.38rem;
  }
}

.hero {
  padding: clamp(1.25rem, 3vw, 2rem) 0 3rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(213, 166, 58, 0.18), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(92, 143, 175, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(23, 30, 38, 0.96), rgba(29, 36, 45, 0.92));
}

.hero-grid {
  gap: 1.4rem;
}

.hero-copy {
  max-width: 1120px;
  width: 100%;
  padding-top: .85rem;
  margin-top: clamp(5rem, 6vw, 5rem);
  margin-bottom: 1rem;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy > h1,
.hero-copy > h2 {
  width: min(100%, 38ch);
  max-width: 38ch;
  margin-inline: auto;
  line-height: 1.4;
  text-align: center;
}

.hero-slider-shell {
  position: relative;
  width: min(100%, 1120px);
  padding: clamp(.85rem, 1.8vw, 1.1rem);
  border: 1px solid rgba(240, 200, 108, 0.16);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(14, 18, 23, 0.94), rgba(7, 10, 14, 0.98));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 245, 220, 0.08);
  overflow: hidden;
}

.hero-slider-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 82px),
    linear-gradient(120deg, rgba(240, 200, 108, 0.08), transparent 32%, rgba(106, 166, 201, 0.08));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 100%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  min-height: clamp(320px, 48vw, 560px);
  border-radius: 24px;
  overflow: hidden;
  background: #080b10;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.05);
  transition: opacity .8s ease, transform 1.4s ease, visibility 0s linear .8s;
}

.hero-slide.is-leaving {
  visibility: visible;
  z-index: 1;
  transition-delay: 0s, 0s, 0s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  transition-delay: 0s, 0s, 0s;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(18, 26, 34, 0.12)),
    linear-gradient(115deg, rgba(255, 244, 214, 0.06) 0%, transparent 40%, rgba(240, 200, 108, 0.1) 100%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02) brightness(1.08);
}

.hero-slide-tag {
  position: absolute;
  top: clamp(1rem, 2vw, 1.35rem);
  left: clamp(1rem, 2vw, 1.35rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 236, 187, 0.26);
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.88), rgba(10, 14, 19, 0.7)),
    rgba(255, 255, 255, 0.06);
  color: #fff6df;
  font-size: clamp(.74rem, .34vw + .66rem, .96rem);
  font-weight: 800;
  letter-spacing: clamp(.08em, .12vw, .14em);
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero-slide-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0c86c;
  box-shadow: 0 0 0 6px rgba(240, 200, 108, 0.12);
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 244, 214, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(18, 25, 33, 0.88), rgba(8, 12, 16, 0.72)),
    rgba(255, 255, 255, 0.04);
  color: #fff1c8;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(calc(-30% - 28px));
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease, background .25s ease, color .25s ease;
}

.hero-slider-arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  width: 1em;
  height: 1em;
  text-align: center;
  transform: translateY(-2px);
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  border-color: rgba(240, 200, 108, 0.4);
  background:
    linear-gradient(135deg, rgba(31, 39, 48, 0.92), rgba(12, 16, 21, 0.8)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.3),
    0 0 0 6px rgba(240, 200, 108, 0.08);
}

.hero-slider-arrow--prev {
  left: clamp(1rem, 2vw, 1.35rem);
}

.hero-slider-arrow--next {
  right: clamp(1rem, 2vw, 1.35rem);
}

.hero-slider-ui {
  position: absolute;
  left: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: clamp(1rem, 2vw, 1.35rem);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-slider-progress {
  position: relative;
  flex: 1 1 auto;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-slider-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #f0c86c, #fff4d3);
  box-shadow: 0 0 18px rgba(240, 200, 108, 0.34);
}

.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem;
  border-radius: 999px;
  background: rgba(9, 13, 18, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.hero-slider-dot.is-active {
  background: #f0c86c;
  transform: scale(1.16);
  box-shadow: 0 0 0 4px rgba(240, 200, 108, 0.18);
}

.hero .cta-row {
  margin-top: 1rem;
  margin-bottom: 0;
}

.hero-slider-shell {
  margin-bottom: 1rem;
}

@keyframes heroSliderProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 760px) {
  .hero-slider-shell {
    border-radius: 26px;
  }

  .hero-slider {
    min-height: clamp(280px, 62vw, 460px);
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .hero-slider-arrow {
    width: 46px;
    height: 46px;
    transform: translateY(calc(-50% - 22px));
  }

  .hero-slider-arrow span {
    font-size: 1.65rem;
  }

  .hero-slider-ui {
    flex-direction: row;
    align-items: center;
  }

  .hero-slider-dots {
    justify-content: flex-end;
  }

  .hero-slider-dot {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 1.2rem;
    padding-bottom: 2.2rem;
  }

  .hero-copy {
    margin-top: 3rem;
    margin-bottom: .8rem;
  }

  .hero-copy > h1,
  .hero-copy > h2 {
    width: min(100%, 32ch);
    max-width: 32ch;
  }

  .hero-slider-shell {
    padding: .7rem;
    border-radius: 22px;
    margin-bottom: .85rem;
  }

  .hero-slider {
    min-height: 240px;
    border-radius: 18px;
  }

  .hero-slide-tag {
    top: .8rem;
    left: .8rem;
    padding: .6rem .78rem;
    font-size: .68rem;
    letter-spacing: .1em;
  }

  .hero-slide-tag::before {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 5px rgba(240, 200, 108, 0.1);
  }

  .hero-slider-arrow--prev {
    left: .8rem;
  }

  .hero-slider-arrow--next {
    right: .8rem;
  }

  .hero-slider-arrow {
    transform: translateY(calc(-50% - 18px));
  }

  .hero-slider-ui {
    left: .8rem;
    right: .8rem;
    bottom: .8rem;
    gap: .7rem;
  }

  .hero-slider-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 380px) {
  .hero-slide-tag {
    padding: .52rem .68rem;
    font-size: .62rem;
    letter-spacing: .08em;
  }

  .hero-slider-arrow {
    width: 42px;
    height: 42px;
    transform: translateY(calc(-50% - 16px));
  }

  .hero-slider-arrow span {
    font-size: 1.5rem;
  }

  .hero-slider-dot {
    width: 7px;
    height: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  .hero-slider-dot {
    transition: none;
  }

  .hero-slider-progress-bar {
    animation: none !important;
    transform: scaleX(1);
  }
}
