/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --orange:       #C45A00;
  --orange-light: #E06A00;
  --orange-dark:  #8B3D00;
  --orange-glow:  #FF7A1A;
  --black:        #080808;
  --dark:         #0f0f0f;
  --dark2:        #181818;
  --dark3:        #222222;
  --white:        #F5F0EA;
  --gray:         #777777;
  --gray-light:   #BBBBBB;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ===================================
   CURSOR
=================================== */
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, opacity .25s;
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(196,90,0,.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .35s ease, height .35s ease, border-color .35s, opacity .3s;
  will-change: left, top;
}

.cursor-ring.hover { width: 54px; height: 54px; border-color: var(--orange); }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ===================================
   SCROLL PROGRESS
=================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--orange-dark), var(--orange-glow));
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
}

/* ===================================
   NAV
=================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,.85);
  border-bottom: 1px solid rgba(196,90,0,.15);
  backdrop-filter: blur(20px);
  transition: padding .4s, background .4s, border-color .4s;
}

nav.scrolled {
  padding: .75rem 4rem;
  background: rgba(8,8,8,.97);
  border-color: rgba(196,90,0,.3);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--white);
}

.logo-text span { color: var(--orange); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .35s ease;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: .6rem 1.5rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
}

.nav-cta:hover { background: var(--orange-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all .3s;
  display: block;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,10,10,.98);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(196,90,0,.2);
  z-index: 999;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .3s;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.mobile-menu a:hover { color: var(--orange); }

/* ===================================
   HERO
=================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 4rem;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(139,61,0,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(196,90,0,.08) 0%, transparent 55%),
    linear-gradient(160deg, #080808 0%, #110800 45%, #080808 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,90,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,90,0,.04) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

#heroCanvas {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
}

.hero-line {
  position: absolute;
  top: 0; left: 30%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: .3;
}

.hero-line2 {
  position: absolute;
  top: 0; right: 20%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--orange-dark), transparent);
  opacity: .2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,90,0,.15);
  border: 1px solid rgba(196,90,0,.4);
  padding: .4rem 1rem;
  margin-bottom: 2rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  animation: fadeInDown .8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: 2px;
  animation: fadeInUp .8s .2s ease both;
}

.hero h1 .accent { color: var(--orange); display: block; }

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
  max-width: 480px;
  animation: fadeInUp .8s .4s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp .8s .6s ease both;
}

.hero-stats {
  position: absolute;
  right: 4rem; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 2;
  animation: fadeInRight .8s .8s ease both;
  border: 1px solid rgba(196,90,0,.15);
  background: rgba(8,8,8,.6);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(196,90,0,.1);
  position: relative;
  transition: background .3s;
}

.stat-item:last-child { border-bottom: none; }

.stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform .4s ease;
}

.stat-item:hover::before { transform: scaleY(1); }
.stat-item:hover { background: rgba(196,90,0,.04); }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 30px rgba(196,90,0,.4);
}

.stat-label {
  font-size: .7rem;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--gray);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

/* ===================================
   BUTTONS
=================================== */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: .85rem 2rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition: background .3s, transform .2s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  padding: .85rem 2rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition: all .3s;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* ===================================
   SECTIONS
=================================== */
section { padding: 6rem 4rem; }

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 1px;
  line-height: 1;
}

.section-title span { color: var(--orange); }

.section-sub {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 1rem;
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange-glow));
  margin: 1.5rem 0;
  position: relative;
}

.divider::after {
  content: '';
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--orange-glow);
  border-radius: 50%;
}

/* ===================================
   SOBRE
=================================== */
.sobre {
  background: var(--dark);
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.sobre-img { position: relative; }

.sobre-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark2);
  border: 1px solid rgba(196,90,0,.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0d00, #2a1500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray);
}

.img-placeholder svg { opacity: .3; }
.img-placeholder p { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; opacity: .5; }

.img-corner {
  position: absolute;
  width: 30px; height: 30px;
  border-color: var(--orange);
  border-style: solid;
}

.img-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.img-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.sobre-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--orange);
  padding: 1.2rem;
  text-align: center;
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
}

.sobre-badge .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

.sobre-badge .txt {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

.sobre-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.sobre-item { display: flex; gap: 1rem; align-items: flex-start; }

.sobre-item-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(196,90,0,.15);
  border: 1px solid rgba(196,90,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.sobre-item-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: .3rem;
}

.sobre-item-text p { font-size: .85rem; color: var(--gray); line-height: 1.5; }

/* ===================================
   SERVIÇOS
=================================== */
.servicos { background: var(--black); }

.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Tabs de categoria */
.servicos-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.tab-btn {
  background: none;
  border: none;
  color: var(--gray);
  padding: .8rem 1.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color .3s;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
}

.tab-btn.active { color: var(--orange); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--white); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.servico-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .4s, transform .4s, box-shadow .4s;
  display: none;
}

.servico-card.visible { display: block; }

.servico-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(196,90,0,.06) 50%, transparent 100%);
  transition: left .7s ease;
  pointer-events: none;
}

.servico-card:hover::after { left: 150%; }

.servico-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,90,0,0), rgba(196,90,0,.07));
  opacity: 0;
  transition: opacity .4s;
}

.servico-card:hover {
  border-color: rgba(196,90,0,.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(196,90,0,.1);
}

.servico-card:hover::before { opacity: 1; }

.servico-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(196,90,0,.12);
  line-height: 1;
  margin-bottom: .5rem;
  transition: color .3s;
}

.servico-card:hover .servico-card-num { color: rgba(196,90,0,.25); }

.servico-card-icon {
  width: 48px; height: 48px;
  background: rgba(196,90,0,.15);
  border: 1px solid rgba(196,90,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--orange);
  transition: background .3s;
}

.servico-card:hover .servico-card-icon { background: rgba(196,90,0,.25); }

.servico-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: .8rem;
}

.servico-card p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

.servico-card-arrow {
  position: absolute;
  bottom: 2rem; right: 2rem;
  width: 30px; height: 30px;
  border: 1px solid rgba(196,90,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s;
}

.servico-card:hover .servico-card-arrow { opacity: 1; transform: translateX(0); }

/* ===================================
   DIFERENCIAIS
=================================== */
.diferenciais {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.diferenciais::after {
  content: 'SEGURANÇA';
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: rgba(196,90,0,.04);
  white-space: nowrap;
  pointer-events: none;
}

.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.diferenciais-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }

.diferencial-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.015);
  transition: border-color .35s, background .35s, transform .35s;
  position: relative;
  overflow: hidden;
}

.diferencial-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange-dark), var(--orange-glow));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s ease;
}

.diferencial-item:hover {
  border-color: rgba(196,90,0,.25);
  background: rgba(196,90,0,.03);
  transform: translateX(6px);
}

.diferencial-item:hover::before { transform: scaleY(1); }

.diferencial-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  min-width: 2.5rem;
  line-height: 1;
}

.diferencial-text h4 { font-size: .95rem; font-weight: 600; margin-bottom: .2rem; }
.diferencial-text p { font-size: .82rem; color: var(--gray); }

.diferenciais-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hexagon-wrap { position: relative; width: 280px; height: 280px; }

.hex-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: var(--orange);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotatePulse 4s ease-in-out infinite;
}

.hex-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border: 1px solid rgba(196,90,0,.3);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  animation: spin 12s linear infinite;
}

.hex-ring2 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  border: 1px dashed rgba(196,90,0,.15);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  animation: spin 20s linear infinite reverse;
}

/* ===================================
   CONTATO
=================================== */
.contato { background: var(--dark); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contato-info { display: flex; flex-direction: column; gap: 2rem; }

.contato-item { display: flex; gap: 1rem; align-items: flex-start; }

.contato-item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(196,90,0,.15);
  border: 1px solid rgba(196,90,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.contato-item-text p { font-size: .8rem; color: var(--gray); margin-bottom: .2rem; letter-spacing: .5px; }
.contato-item-text strong { font-size: .95rem; color: var(--white); }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  padding: .85rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(196,90,0,.7);
  background: rgba(196,90,0,.04);
  box-shadow: 0 0 0 3px rgba(196,90,0,.08);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--dark2); color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-full { width: 100%; text-align: center; }

/* ===================================
   FOOTER
=================================== */
footer {
  background: var(--black);
  position: relative;
  padding: 3rem 4rem;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), rgba(196,90,0,.3), transparent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copy { font-size: .8rem; color: var(--gray); margin-top: .4rem; }
.footer-copy span { color: var(--orange); }

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  font-size: .78rem;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: .5px;
  transition: color .3s;
}

.footer-links a:hover { color: var(--orange); }

/* ===================================
   ANIMAÇÕES
=================================== */
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}

@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(-6px); }
}

@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes fadeInRight {
  from { opacity:0; transform:translateY(-50%) translateX(30px); }
  to   { opacity:1; transform:translateY(-50%) translateX(0); }
}

@keyframes rotatePulse {
  0%,100% { transform:translate(-50%,-50%) scale(1); }
  50%     { transform:translate(-50%,-50%) scale(1.05); }
}

@keyframes spin {
  from { transform:translate(-50%,-50%) rotate(0deg); }
  to   { transform:translate(-50%,-50%) rotate(360deg); }
}

/* ===================================
   SCROLL REVEAL
=================================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal       { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===================================
   RESPONSIVIDADE
=================================== */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }

  .hero {
    padding: 6rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero-stats {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
  }

  .sobre-grid,
  .diferenciais-inner,
  .contato-grid { grid-template-columns: 1fr; }

  .sobre-badge { bottom: .5rem; right: .5rem; }
  .hexagon-wrap { width: 200px; height: 200px; }
  .diferenciais-visual { margin-top: 3rem; }
  footer { padding: 3rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .servicos-tabs { flex-wrap: wrap; }
}

