@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 69, 0, 0.35) transparent;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 69, 0, 0.35);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 99, 37, 0.6);
}

:root {
  --o: #ff4500;
  --o2: #ff6325;
  --k: #0a0a0a;
  --k2: #111111;
  --k3: #181818;
  --k4: #212121;
  --k5: #2c2c2c;
  --w: #ffffff;
  --w2: rgba(255, 255, 255, 0.78);
  --w3: rgba(255, 255, 255, 0.45);
  --w4: rgba(255, 255, 255, 0.09);
  --w5: rgba(255, 255, 255, 0.04);
  --f: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f);
  background: var(--k);
  color: var(--w);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

strong {
  color: var(--w);
  font-weight: 700;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pad {
  padding: 110px 0;
}

.fu,
.fl,
.fr {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fu {
  transform: translateY(44px);
}

.fl {
  transform: translateX(-52px);
}

.fr {
  transform: translateX(52px);
}

.fu.in,
.fl.in,
.fr.in {
  opacity: 1;
  transform: none;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 1rem;
}

.label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--o);
  flex-shrink: 0;
}

.label-light {
  color: var(--o);
}

.h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.h2-white {
  color: var(--w);
}

p {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--w2);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.6rem;
  border-radius: 7px;
  border: none;
  font-family: var(--f);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translate(3px, -3px);
}

.btn-orange {
  background: var(--o);
  color: var(--w);
}

.btn-orange:hover {
  background: var(--o2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 69, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--w);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
  border-color: var(--o);
  color: var(--o);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.78rem;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.55rem;
  font-size: 0.9rem;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.3rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.stuck {
  background: rgba(10, 10, 10, 0.95);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--w4);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--w3);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w3);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--w);
}

.nav-cta {
  background: var(--o) !important;
  color: var(--w) !important;
  padding: 0.42rem 1rem !important;
  border-radius: 5px !important;
  font-size: 0.7rem !important;
}

.nav-cta:hover {
  background: var(--o2) !important;
  color: var(--w) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--w);
  border-radius: 2px;
  transition: 0.35s var(--ease);
}

.hamburger.open span:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--k);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hzoom 18s ease forwards;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.72) 50%, rgba(10, 10, 10, 0.95) 100%),
    linear-gradient(to right, rgba(10, 10, 10, 0.3) 0%, transparent 50%, rgba(10, 10, 10, 0.3) 100%);
}

@keyframes hzoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-accent-v {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--o) 30%, var(--o) 70%, transparent);
  z-index: 2;
}

.hero-deco {
  position: absolute;
  z-index: 1;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  opacity: 0.18;
}

.hero-deco span {
  display: block;
  height: 1px;
  background: var(--w);
}

.hero-deco span:nth-child(1) {
  width: 80px;
}

.hero-deco span:nth-child(2) {
  width: 50px;
}

.hero-deco span:nth-child(3) {
  width: 120px;
}

.hero-deco span:nth-child(4) {
  width: 40px;
}

.hero-deco span:nth-child(5) {
  width: 90px;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 2rem 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
  animation: fiu 0.7s 0.1s both;
}

.hero-rule {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--o);
  flex-shrink: 0;
}

.hero-eyebrow>span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--o);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
  max-width: 800px;
}

.ht {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fiu 0.65s both;
}

.ht[data-i="0"] {
  animation-delay: 0.18s;
  color: var(--w);
}

.ht[data-i="1"] {
  animation-delay: 0.3s;
  color: var(--o);
  font-style: italic;
}

.ht[data-i="2"] {
  animation-delay: 0.42s;
  color: var(--w);
}

.ht[data-i="3"] {
  animation-delay: 0.54s;
  color: var(--w2);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.5rem, 2.8vw, 2.8rem);
  margin-top: 0.3rem;
}

@keyframes fiu {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--w2);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.4rem;
  animation: fiu 0.7s 0.7s both;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fiu 0.7s 0.84s both;
  margin-bottom: 3.5rem;
}

.hero-solutions {
  width: 100%;
  max-width: 860px;
  animation: fiu 0.8s 1s both;
}

.hero-solutions-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w3);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
}

.hero-solutions-label::before,
.hero-solutions-label::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-solutions-strip {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(12px);
}

.hss-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--w2);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
}

.hss-item:hover {
  border-color: rgba(255, 69, 0, 0.4);
  background: rgba(255, 69, 0, 0.08);
  color: var(--w);
}

.hss-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--o);
  flex-shrink: 0;
  opacity: 0.8;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w3);
  transition: border-color 0.3s, color 0.3s;
  animation: scrollbob 2.2s 1.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
}

.hero-scroll:hover {
  border-color: var(--o);
  color: var(--o);
}

@keyframes scrollbob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

.marquee {
  background: var(--o);
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  animation: mscroll 28s linear infinite;
}

.marquee-track span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w);
  flex-shrink: 0;
}

.marquee-track em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.55rem;
  flex-shrink: 0;
}

@keyframes mscroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sobre {
  background: var(--k2);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
}

.img-frame img {
  transition: transform 0.9s var(--ease);
}

.img-frame:hover img {
  transform: scale(1.04);
}

.img-badge {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  background: var(--o);
  border-radius: 11px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.45);
  animation: floatbadge 4s ease-in-out infinite;
}

.img-badge svg {
  width: 19px;
  height: 19px;
  color: var(--w);
  flex-shrink: 0;
}

.img-badge strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.img-badge small {
  display: block;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.75);
}

@keyframes floatbadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.sobre-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w3);
  border: 1px solid var(--k5);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  transition: border-color 0.3s, color 0.3s;
}

.sobre-tags span:hover {
  border-color: var(--o);
  color: var(--o);
}

.servicos {
  background: var(--k);
}

.sec-header {
  max-width: 580px;
  margin-bottom: 4rem;
}

.svc-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.svc-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--w4);
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.svc-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  border-bottom: 1px solid var(--w4);
  background: var(--k2);
  transition: background 0.3s, color 0.3s;
  position: relative;
}

.svc-tab:last-child {
  border-bottom: none;
}

.svc-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--o);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.svc-tab.active {
  background: var(--k3);
}

.svc-tab.active::before {
  transform: scaleY(1);
}

.svc-tab-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--o);
  letter-spacing: 0.08em;
  min-width: 20px;
}

.svc-tab-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--w3);
  transition: color 0.3s;
  line-height: 1.3;
}

.svc-tab.active .svc-tab-label {
  color: var(--w);
}

.svc-tab:hover .svc-tab-label {
  color: var(--w2);
}

.svc-tab-icon {
  margin-left: auto;
  color: var(--w4);
  transition: color 0.3s;
}

.svc-tab.active .svc-tab-icon {
  color: var(--o);
}

.svc-tab-icon svg {
  width: 14px;
  height: 14px;
}

.svc-panels {
  position: relative;
}

.svc-panel {
  display: none;
  animation: panelIn 0.45s var(--ease) both;
}

.svc-panel.active {
  display: block;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.svc-panel-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
  position: relative;
}

.svc-panel-img img {
  transition: transform 0.9s var(--ease);
}

.svc-panel-img:hover img {
  transform: scale(1.03);
}

.svc-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7), transparent 50%);
}

.svc-panel-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: var(--o);
  color: var(--w);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.svc-panel-num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: -0.5rem;
  letter-spacing: -0.04em;
}

.svc-panel h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
  color: var(--w);
  line-height: 1.2;
}

.svc-panel>p {
  font-size: 0.92rem;
  color: var(--w2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.svc-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--k2);
  border: 1px solid var(--w4);
  border-radius: 9px;
  padding: 0.75rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--w2);
  line-height: 1.4;
  transition: border-color 0.3s;
}

.svc-feat:hover {
  border-color: rgba(255, 69, 0, 0.25);
}

.svc-feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--o);
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.kits {
  background: var(--k3);
}

.kits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.kits-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w3);
  margin-bottom: 1.1rem;
}

.kits-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.kits-chips span {
  background: var(--k4);
  border: 1px solid var(--k5);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--w2);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.kits-chips span:hover {
  background: rgba(255, 69, 0, 0.1);
  border-color: rgba(255, 69, 0, 0.4);
  color: var(--o);
}

.kits-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.kits-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 24, 24, 0.6), transparent);
}

.ops {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.ops-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ops-photo img {
  object-position: center 30%;
}

.ops-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.97) 0%, rgba(10, 10, 10, 0.9) 60%, rgba(10, 10, 10, 0.7) 100%);
}

.ops-content {
  position: relative;
  z-index: 1;
}

.ops-top {
  margin-bottom: 3rem;
}

.ops-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.ops-copy p {
  font-weight: 300;
}

.ops-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.ops-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--w4);
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--w2);
  line-height: 1.45;
  transition: border-color 0.3s, background 0.3s;
}

.ops-item:hover {
  border-color: rgba(255, 69, 0, 0.3);
  background: rgba(255, 69, 0, 0.05);
  color: var(--w);
}

.ops-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 69, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ops-item-icon svg {
  width: 13px;
  height: 13px;
  color: var(--o);
}

.storage {
  background: var(--k2);
}

.storage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.storage-img-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
}

.storage-img-frame img {
  transition: transform 0.9s var(--ease);
}

.storage-img-frame:hover img {
  transform: scale(1.04);
}

.storage-float {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--k3);
  border: 1px solid var(--w4);
  border-radius: 9px;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--w2);
  transition: border-color 0.3s;
}

.sf-item:hover {
  border-color: rgba(255, 69, 0, 0.3);
}

.sf-item svg {
  width: 16px;
  height: 16px;
  color: var(--o);
  flex-shrink: 0;
}

.storage-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.sh {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--w4);
  font-size: 0.86rem;
  color: var(--w2);
  font-weight: 400;
}

.sh:last-child {
  border-bottom: none;
}

.sh-n {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--o);
  letter-spacing: 0.05em;
  width: 26px;
  flex-shrink: 0;
}

.processo {
  background: var(--k4);
}

.proc-header {
  max-width: 500px;
  margin-bottom: 4rem;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.proc-item {
  display: flex;
  gap: 1.1rem;
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--w4);
}

.proc-item:nth-child(n + 4) {
  border-bottom: none;
  padding-top: 2.5rem;
}

.proc-item:not(:nth-child(3n)) {
  border-right: 1px solid var(--w4);
}

.proc-item:not(:nth-child(3n + 1)) {
  padding-left: 2rem;
  padding-right: 2rem;
}

.proc-item:nth-child(3n) {
  padding-right: 0;
}

.proc-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.1rem;
}

.proc-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--k5);
  border: 1.5px solid rgba(255, 69, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.proc-item:hover .proc-dot {
  background: var(--o);
  border-color: var(--o);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

.proc-dot span {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--o);
  transition: color 0.35s;
}

.proc-item:hover .proc-dot span {
  color: var(--w);
}

.proc-line {
  width: 1.5px;
  flex: 1;
  min-height: 18px;
  background: linear-gradient(to bottom, rgba(255, 69, 0, 0.2), transparent);
  margin-top: 0.5rem;
}

.proc-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--o);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.proc-body p {
  font-size: 0.8rem;
  color: var(--w3);
  line-height: 1.7;
  margin-bottom: 0;
}

.numeros {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.nums-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nums-photo img {
  object-position: center 40%;
}

.nums-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.93);
}

.nums-inner {
  position: relative;
  z-index: 1;
}

.nums-top {
  margin-bottom: 3.5rem;
}

.nums-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}

.nbadge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.6rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--w2);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.nbadge:hover {
  border-color: rgba(255, 69, 0, 0.35);
  background: rgba(255, 69, 0, 0.06);
  transform: translateY(-3px);
  color: var(--w);
}

.nbadge-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 69, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.nbadge:hover .nbadge-icon {
  background: rgba(255, 69, 0, 0.2);
}

.nbadge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--o);
}

.nbadge span {
  line-height: 1.35;
}

.contato {
  background: var(--k3);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 6rem;
  align-items: start;
}

.cta-info>p {
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--k4);
  border: 1px solid var(--w4);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s;
}

.cc-item:hover {
  border-color: rgba(255, 69, 0, 0.28);
  background: var(--k5);
}

.cc-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 69, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-icon svg {
  width: 17px;
  height: 17px;
  color: var(--o);
}

.cc-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.cc-text small {
  font-size: 0.71rem;
  color: var(--w3);
  font-weight: 400;
}

.cta-form-wrap {
  background: var(--k4);
  border: 1px solid var(--w4);
  border-radius: 18px;
  padding: 2.4rem;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.f-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.f-full {
  margin-bottom: 1.3rem;
}

.f-field label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w3);
}

.f-field input,
.f-field textarea {
  background: var(--k5);
  border: 1px solid var(--w4);
  border-radius: 7px;
  padding: 0.72rem 0.95rem;
  color: var(--w);
  font-family: var(--f);
  font-size: 0.88rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.f-field input:focus,
.f-field textarea:focus {
  border-color: var(--o);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.f-field input::placeholder,
.f-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.f-success {
  display: none;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.9rem;
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.22);
  border-radius: 8px;
  padding: 0.9rem 1rem;
}

.f-success.show {
  display: flex;
  animation: fiu 0.5s both;
}

.f-success svg {
  width: 22px;
  height: 22px;
  color: var(--o);
  flex-shrink: 0;
}

.f-success strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.f-success small {
  font-size: 0.71rem;
  color: var(--w3);
}

/* ── Mensagem de erro no envio ────────── */
.f-error {
  display: none;
  align-items: center;
  gap: .8rem;
  margin-top: .8rem;
  background: rgba(220, 50, 50, .07);
  border: 1px solid rgba(220, 50, 50, .28);
  border-radius: 8px;
  padding: .9rem 1rem;
}
.f-error.show {
  display: flex;
  animation: fiu .5s both;
}
.f-error svg {
  width: 22px;
  height: 22px;
  color: #e05555;
  flex-shrink: 0;
}
.f-error strong {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: .1rem;
  color: #e87777;
}
.f-error small {
  font-size: .69rem;
  color: rgba(255, 180, 180, .75);
}

/* ── Estado de loading no botão ──────── */
.btn-submit.loading {
  opacity: .75;
  cursor: wait;
  pointer-events: none;
}
.btn-submit .spinner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.footer {
  background: var(--k);
  border-top: 1px solid var(--w4);
}

.footer-body {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.footer-logo strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.footer-logo small {
  display: block;
  font-size: 0.6rem;
  color: var(--w3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}

.footer-brand>p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--w3);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 0.4rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.81rem;
  font-weight: 400;
  color: var(--w3);
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--w);
}

.footer-bar {
  border-top: 1px solid var(--w4);
  padding: 1.3rem 0;
}

.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bar-inner span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-privacy-link {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.25s;
}

.footer-privacy-link:hover {
  color: #ff4500;
}

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: wapulse 2.8s ease-in-out infinite;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0a0a0a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0a0a0a;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes wapulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  padding: 1rem 2rem;
  background: rgba(17, 17, 17, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 69, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ff4500;
}

.cookie-icon svg {
  width: 20px;
  height: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.cookie-text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.cookie-policy-link {
  background: none;
  border: none;
  color: #ff4500;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-family: inherit;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-x {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.25s;
}

.cookie-x:hover {
  color: #fff;
}

.cookie-x svg {
  width: 16px;
  height: 16px;
}

.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.privacy-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.privacy-modal {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s var(--ease);
  overflow: hidden;
}

.privacy-overlay.open .privacy-modal {
  transform: translateY(0) scale(1);
}

.privacy-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.privacy-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff4500;
  margin-bottom: 0.4rem;
}

.privacy-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.privacy-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.privacy-close:hover {
  background: rgba(255, 69, 0, 0.15);
  color: #ff4500;
}

.privacy-close svg {
  width: 16px;
  height: 16px;
}

.privacy-body {
  overflow-y: auto;
  padding: 1.8rem 2rem;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 69, 0, 0.3) transparent;
}

.privacy-body::-webkit-scrollbar {
  width: 5px;
}

.privacy-body::-webkit-scrollbar-track {
  background: transparent;
}

.privacy-body::-webkit-scrollbar-thumb {
  background: rgba(255, 69, 0, 0.3);
  border-radius: 4px;
}

.privacy-intro {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.privacy-section {
  margin-bottom: 1.8rem;
}

.privacy-section h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ff4500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.privacy-section p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.privacy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.6rem 0 0.9rem;
}

.privacy-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.privacy-section ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4500;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.privacy-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin-top: 0.7rem;
}

.privacy-contact-card strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.privacy-contact-card span,
.privacy-contact-card a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
}

.privacy-contact-card a:hover {
  color: #ff4500;
}

.privacy-footer {
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .svc-layout {
    grid-template-columns: 260px 1fr;
  }

  .nums-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 940px) {
  .svc-layout {
    grid-template-columns: 1fr;
  }

  .svc-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
    overflow: hidden;
  }

  .svc-tab {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.85rem 0.6rem;
    gap: 0.4rem;
    border-bottom: none;
    border-right: 1px solid var(--w4);
  }

  .svc-tab:nth-child(3),
  .svc-tab:nth-child(6) {
    border-right: none;
  }

  .svc-tab:nth-child(n + 4) {
    border-top: 1px solid var(--w4);
  }

  .svc-tab::before {
    width: 100%;
    height: 2px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform-origin: center;
  }

  .svc-tab-num {
    font-size: 0.6rem;
  }

  .svc-tab-label {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .svc-tab-icon {
    display: none;
  }

  .nums-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-solutions-strip {
    gap: 0.4rem;
  }
}

@media (max-width: 860px) {
  .pad {
    padding: 80px 0;
  }

  .sobre-grid,
  .kits-grid,
  .storage-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ops-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-item:not(:nth-child(3n)) {
    border-right: none;
  }

  .proc-item:not(:nth-child(3n + 1)) {
    padding-left: 0;
    padding-right: 0;
  }

  .proc-item:nth-child(odd) {
    border-right: 1px solid var(--w4) !important;
    padding-right: 2rem !important;
  }

  .proc-item:nth-child(even) {
    border-right: none !important;
    padding-left: 2rem !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem;
    border-bottom: 1px solid var(--w4);
    backdrop-filter: blur(16px);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .ops-items {
    grid-template-columns: 1fr;
  }

  .nums-badges {
    grid-template-columns: 1fr 1fr;
  }

  .svc-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-tab:nth-child(2n) {
    border-right: none;
  }

  .svc-tab:nth-child(3) {
    border-right: 1px solid var(--w4);
  }

  .svc-tab:nth-child(n + 3) {
    border-top: 1px solid var(--w4);
  }

  .svc-tab:nth-child(5) {
    border-right: none;
    grid-column: 1 / -1;
  }

  .proc-grid {
    grid-template-columns: 1fr;
  }

  .proc-item {
    border-right: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-bottom: 1px solid var(--w4) !important;
  }

  .proc-item:last-child {
    border-bottom: none !important;
  }

  .f-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bar-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .cta-form-wrap {
    padding: 1.5rem;
  }

  .svc-features {
    grid-template-columns: 1fr;
  }

  .hss-item {
    font-size: 0.7rem;
    padding: 0.45rem 0.75rem;
  }

  .wa-float {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  .cookie-inner {
    gap: 0.9rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .privacy-modal {
    max-height: 94vh;
    border-radius: 14px;
  }

  .privacy-header,
  .privacy-body,
  .privacy-footer {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
}

.wa-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 1.5rem !important;
  z-index: 9999 !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45) !important;
  transition: transform 0.3s ease !important;
  animation: wapulse 2.8s ease-in-out infinite !important;
  margin: 0 !important;
  transform: translateX(0) !important;
  will-change: transform !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}

.cookie-banner {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9998 !important;
  background: rgba(17, 17, 17, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  border-top: 1px solid rgba(255, 69, 0, 0.3) !important;
  padding: 1rem !important;
  transform: translateY(100%) !important;
  transition: transform 0.4s ease !important;
  box-sizing: border-box !important;
}

.cookie-banner.visible {
  transform: translateY(0) !important;
}

.cookie-inner {
  max-width: 1240px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.cookie-text {
  flex: 1 !important;
  min-width: 250px !important;
}

.cookie-text p {
  margin: 0 !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.5 !important;
}

.cookie-actions {
  display: flex !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}

.cookie-x {
  position: absolute !important;
  top: 0.5rem !important;
  right: 0.5rem !important;
  background: none !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.5) !important;
  cursor: pointer !important;
  padding: 0.25rem !important;
  display: none !important;
}

.hamburger {
  display: none !important;
  width: 40px !important;
  height: 40px !important;
  position: relative !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: center !important;
  justify-content: center !important;
}

.hamburger span {
  display: block !important;
  width: 24px !important;
  height: 2px !important;
  background: white !important;
  border-radius: 2px !important;
  position: absolute !important;
  left: 8px !important;
  transition: all 0.3s ease !important;
}

.hamburger span:first-child {
  top: 12px !important;
}

.hamburger span:last-child {
  bottom: 12px !important;
}

.hamburger.open span:first-child {
  transform: rotate(45deg) !important;
  top: 19px !important;
}

.hamburger.open span:last-child {
  transform: rotate(-45deg) !important;
  bottom: 19px !important;
}

@media (max-width: 860px) {
  .nav-wrap {
    padding: 0 1rem !important;
  }

  .hamburger {
    display: flex !important;
  }

  .nav-links {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    padding: 1.5rem !important;
    gap: 1.2rem !important;
    border-bottom: 2px solid #ff4500 !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
    pointer-events: none !important;
    display: flex !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
    z-index: 999 !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
  }

  .nav-links.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .nav-links li {
    width: 100% !important;
    text-align: center !important;
  }

  .nav-links a {
    display: block !important;
    padding: 0.8rem !important;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
  }

  .nav-cta {
    margin-top: 0.5rem !important;
    background: #ff4500 !important;
    color: white !important;
    border-radius: 8px !important;
  }

  .hero-inner {
    padding: 100px 1rem 80px !important;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
  }

  .ht[data-i="3"] {
    font-size: clamp(1.2rem, 5vw, 2rem) !important;
  }

  .hero-solutions-strip {
    padding: 1rem !important;
  }

  .hss-item {
    white-space: normal !important;
    text-align: center !important;
    font-size: 0.7rem !important;
  }

  .sobre-grid,
  .kits-grid,
  .storage-grid,
  .cta-grid {
    gap: 2rem !important;
  }

  .wrap {
    padding: 0 1rem !important;
  }

  .cookie-banner {
    padding: 0.8rem !important;
  }

  .cookie-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.8rem !important;
    padding-right: 30px !important;
  }

  .cookie-text {
    text-align: center !important;
    min-width: auto !important;
  }

  .cookie-text strong {
    display: inline-block !important;
    margin-right: 0.3rem !important;
  }

  .cookie-text p {
    font-size: 0.8rem !important;
    display: inline !important;
  }

  .cookie-actions {
    justify-content: center !important;
    width: 100% !important;
  }

  .cookie-actions .btn {
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 0.6rem !important;
    font-size: 0.75rem !important;
  }

  .cookie-x {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: 0.5rem !important;
    right: 0.5rem !important;
    width: 30px !important;
    height: 30px !important;
    z-index: 10 !important;
  }

  .cookie-x svg {
    width: 16px !important;
    height: 16px !important;
  }

  .wa-float {
    bottom: 1rem !important;
    right: 1rem !important;
    width: 50px !important;
    height: 50px !important;
  }

  .wa-float svg {
    width: 24px !important;
    height: 24px !important;
  }

  .wa-tooltip {
    display: none !important;
  }

  .hero,
  .sobre,
  .servicos,
  .kits,
  .ops,
  .storage,
  .processo,
  .numeros,
  .contato {
    overflow-x: hidden !important;
  }

  .proc-grid {
    gap: 1rem !important;
  }

  .proc-item {
    padding: 1.5rem 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-eyebrow {
    gap: 0.3rem !important;
  }

  .hero-rule {
    width: 20px !important;
  }

  .hero-eyebrow>span {
    font-size: 0.55rem !important;
  }

  .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-ctas {
    width: 100% !important;
  }

  .hss-item {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-solutions-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.4rem !important;
  }

  .svc-tab {
    padding: 0.7rem 0.3rem !important;
  }

  .svc-tab-label {
    font-size: 0.65rem !important;
  }

  .svc-panel h3 {
    font-size: 1.3rem !important;
  }

  .svc-features {
    grid-template-columns: 1fr !important;
  }

  .ops-items {
    grid-template-columns: 1fr !important;
  }

  .nums-badges {
    grid-template-columns: 1fr !important;
  }

  .nbadge {
    flex-direction: row !important;
    text-align: left !important;
    padding: 0.8rem !important;
  }

  .nbadge-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .footer-grid {
    gap: 1.5rem !important;
  }

  .footer-col {
    text-align: center !important;
  }

  .footer-logo {
    justify-content: center !important;
  }

  .footer-bar-inner {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
  }

  .cookie-actions {
    flex-direction: row !important;
  }

  .cookie-actions .btn {
    font-size: 0.7rem !important;
    padding: 0.5rem !important;
  }

  .cookie-inner {
    padding-right: 25px !important;
  }

  .cta-form-wrap {
    padding: 1rem !important;
  }

  .f-row {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }

  .cc-item {
    padding: 0.8rem !important;
  }

  .cc-text strong {
    font-size: 0.8rem !important;
  }
}

html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.hamburger.open span:first-child {
  top: 19px !important;
}

.hamburger.open span:last-child {
  bottom: 19px !important;
}

@media (max-width: 640px) {
  .privacy-modal {
    max-height: 90vh !important;
    margin: 0.5rem !important;
  }

  .privacy-header {
    padding: 1rem !important;
  }

  .privacy-header h2 {
    font-size: 1.2rem !important;
  }

  .privacy-body {
    padding: 1rem !important;
  }

  .privacy-section h3 {
    font-size: 0.8rem !important;
  }

  .privacy-section p,
  .privacy-section ul li {
    font-size: 0.8rem !important;
  }

  .privacy-footer {
    padding: 1rem !important;
  }
}

.wa-float {
  max-width: 56px !important;
  max-height: 56px !important;
  overflow: hidden !important;
}

@media (max-width: 480px) {
  .wa-float {
    max-width: 50px !important;
    max-height: 50px !important;
  }
}