/* =============================================
   FELIX SOLUTIONS — style.css
   Design: Luxury Tech Dark
   Tipografia: Syne (display) + DM Sans (body)
   Paleta: #0a0f1c (bg) | #c04a0e (accent) | #ffffff
============================================= */

/* ---- RESET & VARIÁVEIS ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0f1c;
  --bg-2:        #0d1120;
  --bg-3:        #141828;
  --bg-card:     #1a2236;
  --azul:        #1e2a4a;
  --laranja:     #c04a0e;
  --laranja-hov: #e05a1a;
  --laranja-glow:rgba(192, 74, 14, 0.35);
  --verde:       #1aab5e;
  --azul-link:   #2a6ef5;
  --branco:      #ffffff;
  --texto:       rgba(255,255,255,0.82);
  --texto-dim:   rgba(255,255,255,0.45);
  --borda:       rgba(255,255,255,0.08);
  --borda-ativa: rgba(192,74,14,0.5);
  --sombra:      0 8px 32px rgba(0,0,0,0.4);
  --sombra-lg:   0 24px 64px rgba(0,0,0,0.55);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --trans:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow:  all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--texto);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

html, body { overflow-x: hidden; max-width: 100%; }

/* ---- CURSOR ---- */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--laranja);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(192,74,14,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s linear, width 0.2s, height 0.2s, opacity 0.2s;
}
body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot { width: 10px; height: 10px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--laranja); }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ---- TIPOGRAFIA BASE ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  color: var(--branco);
  line-height: 1.15;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--laranja);
  background: rgba(192,74,14,0.1);
  border: 1px solid rgba(192,74,14,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--laranja);
}
.section-desc {
  color: var(--texto-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ---- BOTÕES ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--laranja);
  color: var(--branco);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--laranja-hov);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--laranja-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--branco);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-auto {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde);
  color: var(--branco);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  text-decoration: none;
}
.btn-auto:hover {
  background: #17c96a;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,171,94,0.35);
}

.btn-telecom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--azul-link);
  color: var(--branco);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  text-decoration: none;
}
.btn-telecom:hover {
  background: #4080ff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42,110,245,0.35);
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--laranja);
  color: var(--branco);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta-nav:hover {
  background: var(--laranja-hov);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--laranja-glow);
}
.btn-cta-nav i { font-size: 0.75rem; transition: transform 0.2s; }
.btn-cta-nav:hover i { transform: translateX(3px); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--borda);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo .logo-img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nl {
  padding: 8px 14px;
  color: var(--texto-dim);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--trans);
  position: relative;
}
.nl::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--laranja);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.nl:hover { color: var(--branco); }
.nl:hover::after, .nl.active::after { width: 16px; }
.nl.active { color: var(--branco); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 2001;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(145deg, #06091a 0%, #0d1526 45%, #1a0d08 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
  max-width: 1200px;
}

/* Coluna de texto do hero — contém eyebrow, heading, sub, chips e actions */
.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,170,100,0.85);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.dot-pulse {
  width: 8px; height: 8px;
  background: #1aab5e;
  border-radius: 50%;
  animation: dotPulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,171,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(26,171,94,0); }
}

.hero-heading {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.text-stroke {
  -webkit-text-stroke: 2px var(--laranja);
  color: transparent;
}

.hero-sub {
  color: var(--texto-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.br-desktop { display: block; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--texto-dim);
  cursor: pointer;
  transition: var(--trans);
}
.chip:hover {
  background: rgba(192,74,14,0.15);
  border-color: var(--borda-ativa);
  color: var(--branco);
}
.chip.active-chip {
  background: rgba(192,74,14,0.2);
  border-color: rgba(192,74,14,0.5);
  color: var(--branco);
}
.chip i { color: var(--laranja); font-size: 0.8rem; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--texto-dim);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--laranja), transparent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Mockup no hero */
.hero-mockup {
  position: relative;
  z-index: 2;
}

.mockup-browser {
  background: var(--bg-3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--sombra-lg), 0 0 80px rgba(192,74,14,0.1);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}
.mockup-browser:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.browser-bar {
  background: #0d1120;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--borda);
}
.bb-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bb-dot.red { background: #ff5f57; }
.bb-dot.yellow { background: #ffbd2e; }
.bb-dot.green { background: #28ca41; }
.bb-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--borda);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--texto-dim);
  text-align: center;
}
.browser-screen .mock-svg { width: 100%; display: block; }

.mockup-phone {
  position: absolute;
  bottom: -24px;
  right: -32px;
  width: 110px;
  background: var(--bg-3);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: var(--sombra);
}
.phone-notch {
  height: 10px;
  background: #0d1120;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch::after {
  content: '';
  width: 32px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.phone-svg { width: 100%; display: block; }

/* ---- ANIMAÇÕES DE REVEAL ---- */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(192,74,14,0.04), transparent);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}
.stat-item.trust-badge {
  flex-direction: row;
  gap: 10px;
  text-align: left;
}
.trust-badge i { color: #1aab5e; font-size: 1.2rem; }

.stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--laranja);
  line-height: 1;
  display: inline;
}
.stat-s {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--laranja);
}
.stat-item p {
  font-size: 0.78rem;
  color: var(--texto-dim);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--borda);
  flex-shrink: 0;
}

/* ---- SOBRE ---- */
.sobre {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,74,14,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-left .section-title {
  text-align: left;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
}
.sobre-left .section-title em { display: block; }

.sobre-body {
  color: var(--texto-dim);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.sobre-body strong { color: var(--branco); font-weight: 600; }
.sobre-body em { color: rgba(255,255,255,0.65); font-style: italic; }

.sobre-valores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.sv {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--borda);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--texto);
  transition: var(--trans);
}
.sv:hover {
  border-color: var(--borda-ativa);
  transform: translateX(4px);
}
.sv i { color: var(--laranja); width: 16px; }

.sobre-right {
  position: relative;
}
.sobre-card-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--sombra-lg), 0 0 60px rgba(192,74,14,0.08);
  border: 1px solid var(--borda);
}
.sobre-illustration { width: 100%; display: block; }

.sobre-badge-float {
  position: absolute;
  bottom: -20px;
  right: -16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--laranja);
  color: var(--branco);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 32px var(--laranja-glow);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---- SERVIÇOS ---- */
.servicos {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.servicos::before {
  content: '';
  position: absolute;
  bottom: 0; left: -200px;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(192,74,14,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Tab selector */
.servico-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
  background: var(--bg-3);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.stab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.stab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--laranja);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 14px;
}
.stab.active { border-color: var(--borda-ativa); background: rgba(192,74,14,0.1); }
.stab.active::before { opacity: 0.05; }

.stab-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--texto-dim);
  transition: var(--trans);
  position: relative; z-index: 1;
}
.stab.active .stab-icon { background: rgba(192,74,14,0.2); color: var(--laranja); }
.stab:hover:not(.active) .stab-icon { color: var(--branco); background: rgba(255,255,255,0.08); }

.stab-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--texto-dim);
  transition: var(--trans);
  text-align: center;
  position: relative; z-index: 1;
}
.stab.active .stab-label { color: var(--branco); }
.stab:hover:not(.active) .stab-label { color: var(--texto); }

.stab-sub {
  font-size: 0.72rem;
  color: var(--texto-dim);
  opacity: 0.6;
  text-align: center;
  position: relative; z-index: 1;
}
.stab.active .stab-sub { opacity: 0.8; }

/* Painel de serviço */
.servico-panel {
  display: none;
  animation: panelFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.servico-panel.active { display: block; }

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.panel-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.websites-badge { background: rgba(192,74,14,0.15); color: var(--laranja); border: 1px solid rgba(192,74,14,0.3); }
.automacao-badge { background: rgba(26,171,94,0.12); color: var(--verde); border: 1px solid rgba(26,171,94,0.3); }
.telecom-badge { background: rgba(42,110,245,0.12); color: var(--azul-link); border: 1px solid rgba(42,110,245,0.3); }

.panel-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 18px;
  line-height: 1.2;
}
.panel-title span { color: var(--laranja); }
#panel-automacao .panel-title span { color: var(--verde); }
#panel-telecom .panel-title span { color: var(--azul-link); }

.panel-desc {
  color: var(--texto-dim);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.panel-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.panel-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--texto);
  font-size: 0.92rem;
}
.panel-features li i { color: var(--laranja); font-size: 0.7rem; width: 16px; }
.auto-features li i { color: var(--verde); }
.telecom-features li i { color: var(--azul-link); }

.panel-differencial {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(192,74,14,0.08);
  border: 1px solid rgba(192,74,14,0.2);
  border-left: 3px solid var(--laranja);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  color: var(--texto);
}
.panel-differencial i { color: var(--laranja); }
.panel-differencial strong { color: var(--laranja); }

/* Marcas strip automação */
.marcas-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.marca {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,171,94,0.07);
  border: 1px solid rgba(26,171,94,0.2);
  color: rgba(26,171,94,0.85);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Browser mockup no painel */
.browser-mockup {
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--borda);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
}
.bm-bar {
  background: var(--bg-2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--borda);
}
.bm-dots { display: flex; gap: 6px; }
.bm-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.bm-dots span:nth-child(1) { background: #ff5f57; }
.bm-dots span:nth-child(2) { background: #ffbd2e; }
.bm-dots span:nth-child(3) { background: #28ca41; }
.bm-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--borda);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--texto-dim);
  text-align: center;
}
.bm-reload { color: var(--texto-dim); font-size: 0.8rem; }
.bm-body svg { width: 100%; display: block; }

.mobile-mockup-small {
  width: 90px;
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--bg-3);
  border-radius: 12px;
  border: 1px solid var(--borda);
  overflow: hidden;
  box-shadow: var(--sombra);
}
.mms-bar {
  height: 8px; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
}
.mms-bar::after {
  content: ''; width: 24px; height: 3px;
  background: var(--borda); border-radius: 2px;
}
.mobile-mockup-small svg { width: 100%; display: block; }

.panel-right { position: relative; }

/* Smart home mockup */
.smart-home-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,171,94,0.15);
  box-shadow: var(--sombra-lg), 0 0 60px rgba(26,171,94,0.06);
}
.smart-home-mockup svg { width: 100%; display: block; }

/* Network mockup */
.network-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(42,110,245,0.15);
  box-shadow: var(--sombra-lg), 0 0 60px rgba(42,110,245,0.06);
}
.network-mockup svg { width: 100%; display: block; }

/* ---- PROCESSO ---- */
.processo {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.processo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(192,74,14,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.processo-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pstep {
  background: var(--bg-3);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--trans);
}
.pstep:hover {
  border-color: var(--borda-ativa);
  transform: translateY(-6px);
  box-shadow: var(--sombra);
}

.pstep-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(192,74,14,0.12);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.pstep-body {}

.pstep-icon {
  width: 52px; height: 52px;
  background: rgba(192,74,14,0.12);
  border: 1px solid rgba(192,74,14,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--laranja);
  margin: 0 auto 16px;
  transition: var(--trans);
}
.pstep:hover .pstep-icon {
  background: rgba(192,74,14,0.2);
  transform: scale(1.1);
}

.pstep h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 10px;
}
.pstep p {
  font-size: 0.84rem;
  color: var(--texto-dim);
  line-height: 1.65;
  margin-bottom: 16px;
}
.pstep-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--laranja);
  background: rgba(192,74,14,0.1);
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 500;
}
.pstep-time i { font-size: 0.7rem; }

.pstep-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  margin-top: 80px;
  color: var(--laranja);
  opacity: 0.4;
  font-size: 1.1rem;
}

/* ---- PORTFÓLIO ---- */
.portfolio {
  padding: 120px 0;
  background: var(--bg-2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.pcase {
  background: var(--bg-3);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.pcase:hover {
  border-color: var(--borda-ativa);
  transform: translateY(-8px);
  box-shadow: var(--sombra-lg);
}

.pcase-screen { overflow: hidden; }
.pcase-screen svg { width: 100%; display: block; transition: transform 0.5s ease; }
.pcase:hover .pcase-screen svg { transform: scale(1.03); }

.pcase-info {
  padding: 24px;
}
.pcase-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(192,74,14,0.12);
  color: var(--laranja);
  border: 1px solid rgba(192,74,14,0.25);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.pcase-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
}
.pcase-info p {
  font-size: 0.85rem;
  color: var(--texto-dim);
  line-height: 1.65;
  margin-bottom: 14px;
}
.pcase-stat {
  font-size: 0.82rem;
  color: var(--laranja);
  font-weight: 500;
}
.pcase-stat strong { font-family: 'Syne', sans-serif; font-size: 1rem; }

/* Testimonials */
.testimonials {
  padding-top: 24px;
}
.testi-header { margin-bottom: 32px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--trans);
}
.testi-card:hover {
  border-color: var(--borda-ativa);
  transform: translateY(-4px);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testi-card p {
  font-size: 0.9rem;
  color: var(--texto-dim);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(192,74,14,0.15);
  border: 1px solid rgba(192,74,14,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--laranja);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--branco);
}
.testi-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--texto-dim);
  margin-top: 2px;
}

/* ---- CTA MID ---- */
.cta-mid {
  padding: 80px 0;
  background: var(--bg);
}

.cta-mid-inner {
  background: linear-gradient(135deg, #1a0a04 0%, var(--azul) 60%, #0d1526 100%);
  border: 1px solid rgba(192,74,14,0.2);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-mid-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,74,14,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-mid-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(42,110,245,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-mid-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-mid-text p {
  color: var(--texto-dim);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  position: relative; z-index: 1;
}

.cta-mid-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  position: relative; z-index: 1;
  flex-shrink: 0;
}

.btn-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--branco);
  padding: 16px 28px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn-whatsapp-big i { font-size: 1.2rem; }
.btn-whatsapp-big:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.35);
}

.cta-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--texto-dim);
}
.cta-trust i { color: #1aab5e; }

/* ---- CONTATO ---- */
.contato {
  padding: 120px 0;
  background: var(--bg-2);
}

.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contato-left .section-title {
  text-align: left;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.contato-body {
  color: var(--texto-dim);
  font-size: 0.97rem;
  line-height: 1.78;
  margin-bottom: 36px;
}

.contato-infos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cinfo {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-3);
  border: 1px solid var(--borda);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--trans);
}
.cinfo:hover { border-color: var(--borda-ativa); transform: translateX(4px); }
.cinfo-icon {
  width: 44px; height: 44px;
  background: rgba(192,74,14,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cinfo span {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--branco);
}
.cinfo small {
  font-size: 0.75rem;
  color: var(--texto-dim);
  margin-top: 2px;
  display: block;
}

/* Formulário */
.contato-form {
  background: var(--bg-3);
  border: 1px solid var(--borda);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--texto-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--borda);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--branco);
  transition: var(--trans);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--texto-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--laranja);
  background: rgba(192,74,14,0.03);
  box-shadow: 0 0 0 3px rgba(192,74,14,0.1);
}
.form-group select option { background: var(--bg-2); }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--laranja);
  color: var(--branco);
  padding: 16px 28px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-submit:hover::before { transform: translateX(100%); }
.btn-submit:hover {
  background: var(--laranja-hov);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--laranja-glow);
}
.btn-submit-arrow { margin-left: auto; }
.btn-submit i:first-child { font-size: 1.1rem; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--texto-dim);
  margin-top: 12px;
}

/* ---- FOOTER ---- */
.footer {
  background: #060910;
  border-top: 1px solid var(--borda);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--borda);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo { height: 36px; width: auto; max-width: 180px; object-fit: contain; object-position: left center; margin-bottom: 16px; }
.footer-brand p {
  color: var(--texto-dim);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: var(--bg-3);
  border: 1px solid var(--borda);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-dim);
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-social a:hover {
  background: var(--laranja);
  color: var(--branco);
  border-color: var(--laranja);
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
}
.footer-nav h6 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav a,
.footer-nav span {
  color: var(--texto-dim);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: var(--trans);
  display: block;
}
.footer-nav a:hover { color: var(--laranja); transform: translateX(4px); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: var(--trans);
}
.footer-legal a:hover { color: var(--laranja); }
.footer-legal span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal strong { color: var(--laranja); font-weight: 600; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--branco);
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1.3rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: var(--trans);
  text-decoration: none;
  animation: wfPulse 3s ease infinite;
}
.wf-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.whatsapp-float:hover {
  background: #1db954;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
@keyframes wfPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.7); }
}

/* ---- MODAIS ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(6,9,16,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--bg-3);
  border: 1px solid var(--borda);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--sombra-lg);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--borda) transparent;
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--borda);
  background: var(--bg-2);
  color: var(--texto-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  z-index: 10;
}
.modal-close:hover { background: var(--laranja); color: var(--branco); border-color: var(--laranja); }

.modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--borda);
  clear: both;
}
.modal-icon {
  width: 48px; height: 48px;
  background: rgba(192,74,14,0.12);
  border: 1px solid rgba(192,74,14,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--laranja);
  flex-shrink: 0;
}
.modal-header h2 { font-size: 1.3rem; font-weight: 700; }

.modal-content { padding: 28px 36px 36px; }

.modal-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--borda);
}
.modal-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.modal-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-section h3 span {
  width: 22px; height: 22px;
  background: var(--laranja);
  color: var(--branco);
  border-radius: 50%;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal-section p { font-size: 0.88rem; color: var(--texto-dim); line-height: 1.75; }
.modal-update {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--bg-2);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--texto-dim);
}
.modal-update i { color: var(--laranja); }

/* ---- RESPONSIVO ---- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 96px; padding-bottom: 60px; }
  .hero-text-col { align-items: center; text-align: center; }
  .hero-mockup { display: none; }
  .hero-heading { text-align: center; }
  .hero-sub { text-align: center; max-width: 100%; }
  .hero-chips, .hero-actions { justify-content: center; }

  .sobre-layout { grid-template-columns: 1fr; gap: 48px; }
  .sobre-right { max-width: 480px; margin: 0 auto; }
  .sobre-badge-float { display: none; }

  .panel-layout { grid-template-columns: 1fr; gap: 40px; }

  .processo-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pstep-arrow { display: none; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }

  .cta-mid-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .cta-mid-actions { align-items: center; }

  .contato-layout { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(6,9,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
  }
  .nav-links.open { transform: translateX(0); }
  .nl { font-size: 1.3rem; font-family: 'Syne', sans-serif; font-weight: 700; }
  .btn-cta-nav { display: none; }
  .burger { display: flex; }

  .stats-row { gap: 12px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 45%; }

  .servico-tabs { grid-template-columns: 1fr; padding: 6px; }

  .processo-steps { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .contato-form { padding: 28px 20px; }

  .cta-mid-inner { padding: 48px 24px; }

  .whatsapp-float { bottom: 20px; right: 20px; padding: 12px 16px; }
  .wf-label { display: none; }
  .whatsapp-float { width: 52px; height: 52px; border-radius: 50%; justify-content: center; padding: 0; }
}

@media (max-width: 480px) {
  /* Hero: caber tudo antes do "Role" sem sobreposição */
  .hero {
    min-height: 100svh;          /* usa svh para excluir a barra do browser */
    padding-bottom: 0;
  }
  .hero-inner {
    padding-top: 80px;           /* navbar + folga confortável */
    padding-bottom: 88px;        /* garante distância do "ROLE" */
    gap: 16px;
    justify-content: center;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }
  .hero-heading {
    font-size: clamp(1.85rem, 8.2vw, 2.3rem);
    margin-bottom: 12px;
    line-height: 1.1;
  }
  .text-stroke {
    -webkit-text-stroke: 1.5px var(--laranja);
  }
  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .hero-chips {
    gap: 8px;
    margin-bottom: 16px;
  }
  .chip {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .hero-actions .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  /* Esconde "Solicitar orçamento" no mobile — ganha espaço */
  .hero-actions .btn-ghost {
    display: none;
  }
  /* Scroll hint posicionado com espaço mínimo */
  .hero-scroll-hint {
    bottom: 16px;
  }

  /* Resto do 480px */
  .sobre-valores { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
  .stat-item.trust-badge { flex: 1 1 100%; justify-content: center; }
}

/* ---- PROTEÇÃO DE CONTEÚDO ---- */

/* Desabilitar seleção de texto em todo o site,
   exceto em campos de formulário */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Bloquear drag em todas as imagens */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Imagens gerais sem pointer events (bloqueia right-click na img) */
img:not(a img):not(.nav-logo img) {
  pointer-events: none;
}