
:root {
  --dark:    #0d1117;
  --navy:    #111625;
  --navy-2:  #161d2e;
  --navy-3:  #1c2540;
  --orange:  #D9521E;
  --orange-h:#bf4518;
  --orange-g: linear-gradient(135deg,#D9521E,#f07030);
  --slate:   #8892a4;
  --slate-2: #c0c8d8;
  --white:   #eef1f6;
  --border:  rgba(255,255,255,0.06);
  --glow:    rgba(217,82,30,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Manrope', sans-serif; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }
::selection { background: var(--orange); color: #fff; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,17,23,0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

nav.scrolled { background: rgba(13,17,23,0.95); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--slate-2);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-cta {
  background: var(--orange-g);
  color: #fff; border: none; cursor: pointer;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 0 24px var(--glow);
  transition: box-shadow 0.25s, transform 0.2s, filter 0.2s;
  white-space: nowrap;
}

.btn-cta:hover {
  box-shadow: 0 0 40px rgba(217,82,30,0.4);
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-cta:active { transform: translateY(0); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.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: 72px; inset-x: 0;
  background: rgba(13,17,23,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 5vw 32px;
  flex-direction: column; gap: 4px;
  z-index: 99;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 18px; font-weight: 600;
  color: var(--slate-2); text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn-cta { margin-top: 16px; justify-content: center; padding: 14px; font-size: 16px; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5vw 80px;
  position: relative; overflow: hidden;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,82,30,0.15) 0%, transparent 70%);
  right: -100px; top: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,100,217,0.08) 0%, transparent 70%);
  left: -80px; bottom: 0;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,82,30,0.1);
  border: 1px solid rgba(217,82,30,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px; font-weight: 500;
  color: #f07030;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 860px;
}

.hero-title .accent {
  background: var(--orange-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line-stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--slate);
  max-width: 560px;
  line-height: 1.65;
  margin: 24px 0 36px;
  font-weight: 300;
}

/* Product chips no hero */
.hero-products {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}

.hero-product-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--slate-2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero-product-chip i { color: var(--orange); font-size: 12px; }
.hero-product-chip:hover {
  border-color: rgba(217,82,30,0.4);
  color: #fff;
  background: rgba(217,82,30,0.08);
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}

.btn-outline {
  background: transparent;
  color: var(--slate-2);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.hero-scroll {
  display: flex; align-items: center; gap: 10px;
  margin-top: 64px;
  color: var(--slate);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── STATS ─── */
.stats-bar {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 5vw;
}

.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item { text-align: center; }

.stat-num {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-num span { color: var(--orange); }
.stat-label { font-size: 13px; color: var(--slate); margin-top: 6px; letter-spacing: 0.04em; }

/* ─── SECTIONS BASE ─── */
section { padding: 100px 5vw; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}

.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--orange);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
}

.section-sub {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.65;
  max-width: 520px;
  margin-top: 12px;
  font-weight: 300;
}

.center { text-align: center; }
.center .section-tag { justify-content: center; }
.center .section-sub { margin: 12px auto 0; }

/* ─── PRODUCTS BENTO ─── */
#produtos { background: var(--dark); }

.produtos-header { margin-bottom: 56px; }

.bento-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Workspace - grande, esquerda */
.bento-workspace {
  grid-column: 1; grid-row: 1 / 3;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.bento-workspace::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(217,82,30,0.12) 0%, transparent 70%);
}

.bento-workspace:hover {
  border-color: rgba(217,82,30,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Host - topo direita */
.bento-host {
  grid-column: 2; grid-row: 1;
  background: linear-gradient(145deg, var(--navy-3), var(--navy-2));
  border: 1px solid rgba(217,82,30,0.2);
  border-radius: 20px;
  padding: 36px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.bento-host:hover {
  border-color: rgba(217,82,30,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Sistemas - baixo direita */
.bento-sistemas {
  grid-column: 2; grid-row: 2;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.bento-sistemas:hover {
  border-color: rgba(217,82,30,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.bento-product-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(217,82,30,0.12);
  border: 1px solid rgba(217,82,30,0.25);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bento-title {
  font-size: 28px; font-weight: 800;
  color: #fff; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.bento-title span { color: var(--orange); }

.bento-desc {
  font-size: 14px; color: var(--slate);
  line-height: 1.65; font-weight: 300;
  margin-bottom: 28px;
}

/* Workspace tools mini-grid */
.workspace-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.ws-tool {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
  transition: border-color 0.2s, background 0.2s;
}

.ws-tool:hover {
  border-color: rgba(217,82,30,0.3);
  background: rgba(217,82,30,0.06);
}

.ws-tool-icon {
  font-size: 26px; color: var(--orange);
  margin-bottom: 6px;
}

.ws-tool-name {
  font-size: 16px; font-weight: 700;
  color: var(--slate-2);
  letter-spacing: 0.04em;
}

.ws-tool-sub {
  font-size: 15px; color: var(--slate);
  margin-top: 2px;
}

/* Host features list */
.host-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}

.host-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--slate-2);
}

.host-feat i { color: #28c840; font-size: 11px; flex-shrink: 0; }

/* Sistemas list */
.sistemas-list {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}

.sistemas-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--slate-2);
}

.sistemas-item i { color: var(--orange); font-size: 11px; flex-shrink: 0; }

.bento-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}

.bento-link:hover { gap: 12px; }

/* Uptime indicator */
.uptime-indicator {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-size: 12px; color: #28c840;
  font-weight: 600;
}

.uptime-dot {
  width: 7px; height: 7px;
  background: #28c840;
  border-radius: 50%;
  box-shadow: 0 0 8px #28c840;
  animation: pulse-dot 2s infinite;
}

/* ─── SERVICES ─── */
#servicos { background: var(--navy); }

.services-header { margin-bottom: 56px; }

.services-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--navy-2);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(217,82,30,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover { background: var(--navy-3); }
.service-card:hover::before { opacity: 1; }

.service-card-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 28px; opacity: 0.7;
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(217,82,30,0.12);
  border: 1px solid rgba(217,82,30,0.2);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 20px; color: var(--orange);
  margin-bottom: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 20px var(--glow);
}

.service-name {
  font-size: 17px; font-weight: 700;
  color: #fff; margin-bottom: 16px; line-height: 1.2;
}

.service-list { list-style: none; }

.service-list li {
  font-size: 13.5px;
  color: var(--slate);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}

.service-list li:last-child { border-bottom: none; }
.service-card:hover .service-list li { color: var(--slate-2); }

.service-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── PROCESS ─── */
#processo { background: var(--dark); }

.process-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s;
}

.process-step:last-child { border-bottom: none; }

.step-num {
  font-size: 11px; font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.1em;
  padding-top: 4px;
  min-width: 28px;
  opacity: 0.6;
}

.step-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-desc { font-size: 13.5px; color: var(--slate); line-height: 1.6; font-weight: 300; }

.process-visual { position: relative; }

.process-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative; overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(217,82,30,0.15) 0%, transparent 70%);
}

.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot:nth-child(1) { background: #ff5f57; }
.terminal-dot:nth-child(2) { background: #febc2e; }
.terminal-dot:nth-child(3) { background: #28c840; }
.terminal-label { font-size: 12px; color: var(--slate); margin-left: 6px; letter-spacing: 0.04em; }

.terminal-line {
  font-family: 'Courier New', monospace;
  font-size: 13px; line-height: 1.9;
  color: #4ade80;
}

.terminal-line .cmd { color: #60a5fa; }
.terminal-line .val { color: #fff; }
.terminal-line .org { color: var(--orange); font-weight: bold; }
.terminal-line .cursor {
  display: inline-block; width: 8px; height: 14px;
  background: #4ade80; vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── PORQUE NOS ESCOLHER ─── */
#diferenciais { background: var(--navy); }

.dif-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.dif-points { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }

.dif-point {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.dif-point:last-child { border-bottom: none; }

.dif-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(217,82,30,0.1);
  border: 1px solid rgba(217,82,30,0.2);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px; color: var(--orange);
}

.dif-point-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.dif-point-desc { font-size: 13.5px; color: var(--slate); line-height: 1.6; font-weight: 300; }

.dif-visual {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative; overflow: hidden;
}

.dif-visual::before {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(217,82,30,0.1) 0%, transparent 70%);
}

.metric-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 16px;
}

.metric-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
}

.metric-val {
  font-size: 28px; font-weight: 800;
  color: #fff; line-height: 1;
  letter-spacing: -0.02em;
}

.metric-val span { font-size: 14px; color: var(--orange); }
.metric-val span.green { color: #28c840; }
.metric-label { font-size: 12px; color: var(--slate); margin-top: 4px; }

.integration-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.int-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.25s;
}

.int-item:hover {
  border-color: rgba(217,82,30,0.3);
  background: rgba(217,82,30,0.06);
  transform: translateY(-2px);
}

.int-icon { font-size: 20px; color: var(--orange); margin-bottom: 6px; }
.int-name { font-size: 10px; font-weight: 700; color: var(--slate-2); letter-spacing: 0.04em; }

/* ─── TESTIMONIALS ─── */
#depoimentos { background: var(--dark); }

.testi-grid {
  max-width: 1100px; margin: 48px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.testi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,82,30,0.2);
}

.testi-quote { font-size: 28px; color: var(--orange); margin-bottom: 16px; line-height: 1; opacity: 0.6; }
.testi-text { font-size: 14.5px; color: var(--slate-2); line-height: 1.7; margin-bottom: 24px; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange-g);
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px; color: #fff;
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; color: #fff; }
.testi-role { font-size: 12px; color: var(--slate); margin-top: 2px; }

.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars i { font-size: 12px; color: #fbbf24; }

/* ─── CONTACT ─── */
#contato { background: var(--navy); }

.contact-inner {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.contact-info-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 15px; color: var(--slate);
  line-height: 1.65; font-weight: 300;
  margin-bottom: 40px;
}

.contact-channels { display: flex; flex-direction: column; gap: 16px; width: 100%; }

.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 32px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.channel:hover {
  border-color: rgba(217,82,30,0.4);
  box-shadow: 0 0 30px rgba(217,82,30,0.1);
}

.channel-icon {
  width: 48px; height: 48px;
  background: rgba(217,82,30,0.12);
  border: 1px solid rgba(217,82,30,0.2);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 20px; color: var(--orange);
  flex-shrink: 0;
}

.channel-label { font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; text-align: left; }
.channel-value { font-size: 16px; font-weight: 700; color: #fff; margin-top: 3px; text-align: left; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 5vw 40px;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 24px;
}

.footer-copy { font-size: 13px; color: var(--slate); }

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--slate); font-size: 15px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.social-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-workspace { grid-row: auto; }
  .bento-host, .bento-sistemas { grid-column: 1; grid-row: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .process-inner { grid-template-columns: 1fr; gap: 48px; }
  .dif-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-desk { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .workspace-tools { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 72px 5vw; }
  .stats-inner { gap: 20px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .workspace-tools { grid-template-columns: repeat(3, 1fr); }
}

/* ─── CONTACT FORM ─── */
.contact-form { width:100%; display:flex; flex-direction:column; gap:14px; margin-bottom:32px; text-align:left; }
.contact-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.contact-field { display:flex; flex-direction:column; gap:6px; }
.contact-field label { font-size:12px; color:var(--slate); letter-spacing:0.04em; }
.contact-field input, .contact-field select, .contact-field textarea {
  background:var(--navy-2); border:1px solid var(--border); border-radius:10px;
  padding:12px 14px; color:var(--white); font-family:'Manrope',sans-serif; font-size:14px;
  transition:border-color 0.2s;
}
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { outline:none; border-color:rgba(217,82,30,0.5); }
.contact-field textarea { resize:vertical; min-height:110px; }
.contact-submit { justify-content:center; width:100%; border:none; cursor:pointer; }
@media(max-width:600px){ .contact-form .form-row { grid-template-columns:1fr; } }
