:root {
  --green: #1F2BC3;
  --green-light: #4553d4;
  --green-dark: #111e8a;
  --orange: #1F2BC3;
  --orange-light: #4553d4;
  --white: #ffffff;
  --gray-light: #f4f6fb;
  --gray: #e2e8f4;
  --text-dark: #0d1433;
  --text-mid: #2c3a6b;
  --text-muted: #6b7aaa;
  --azure: #1F2BC3;
  --teams: #4553d4;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 72px;
  background: rgba(31,43,195,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

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

/* Logo real no nav */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  /* A logo tem fundo transparente, funciona direto no nav escuro */
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;   
}

.logo-img-icon {
  width: 110%;
  height: 110%;
  object-fit: contain;
}

.logo-text {
  color: white;
}
.logo-text span:first-child {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  display: block;
  line-height: 1;
}
.logo-text span:last-child {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4553d4;
  font-weight: 600;
}
/* Logo no footer (fundo escuro — mantém as cores originais) */
.logo-img-footer {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

.logo-text { color: white; }
.logo-text span:first-child {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px;
  letter-spacing: -0.3px; display: block; line-height: 1;
}
.logo-text span:last-child {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: white; }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
  color: white !important; font-weight: 600 !important;
  padding: 9px 20px !important; border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(31,43,195,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(31,43,195,0.45) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* ─── HERO / CAROUSEL ─── */
#home { height: 100vh; min-height: 600px; position: relative; overflow: hidden; }

.carousel { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; }

.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(9,13,56,0.93) 40%, rgba(9,13,56,0.55) 100%);
}

.slide-1 .slide-bg {
  background-color: #060d2e;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(31,43,195,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(31,43,195,0.15) 0%, transparent 60%);
}
.slide-2 .slide-bg {
  background-color: #07112a;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,120,212,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(31,43,195,0.12) 0%, transparent 60%);
}
.slide-3 .slide-bg {
  background-color: #080a20;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(98,100,167,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(31,43,195,0.12) 0%, transparent 60%);
}

.slide-visual {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 42%; max-width: 520px;
  display: flex; align-items: center; justify-content: center; opacity: 0.92;
}

/* Server Rack */
.server-rack {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
  backdrop-filter: blur(10px); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative; overflow:visible;
}
.server-rack::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,43,195,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.rack-unit {
  height: 28px; border-radius: 6px;
  background: linear-gradient(90deg, rgba(31,43,195,0.18), rgba(31,43,195,0.06));
  border: 1px solid rgba(31,43,195,0.2);
  display: flex; align-items: center; padding: 0 12px; gap: 8px;
  position: relative; overflow: hidden;
}
.rack-unit::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--green-light); box-shadow: 0 0 8px var(--green-light);
}

.rack-led { width: 6px; height: 6px; border-radius: 50%; margin-left: auto; }
.rack-led.green { background: #7b85f0; box-shadow: 0 0 6px #7b85f0; animation: blink 2s infinite; }
.rack-led.orange { background: var(--orange-light); box-shadow: 0 0 6px var(--orange-light); animation: blink 3s infinite 1s; }
.rack-text { font-family: 'Sora', sans-serif; font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; }

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

.rack-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(31,43,195,0.15); border: 1px solid rgba(31,43,195,0.3);
  border-radius: 20px; padding: 4px 12px;
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 600;
  color: #7b85f0; letter-spacing: 1px;
}

.floating-pill {
  position: absolute;
  background: rgba(9,13,56,0.8); border: 1px solid rgba(31,43,195,0.3);
  backdrop-filter: blur(10px); border-radius: 40px; padding: 8px 16px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600;
  color: white; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.fp-dot { width: 8px; height: 8px; border-radius: 50%; background: #7b85f0; box-shadow: 0 0 8px #7b85f0; }
.fp-dot.orange { background: var(--orange-light); box-shadow: 0 0 8px var(--orange-light); }

/* MS365 Visual */
.ms365-visual {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
  backdrop-filter: blur(10px); padding: 28px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.ms365-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; }
.ms-app {
  aspect-ratio: 1; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 600; color: white;
  transition: transform 0.2s;
}
.ms-app:hover { transform: scale(1.05); }
.ms-app svg { width: 28px; height: 28px; }
.app-outlook  { background: linear-gradient(135deg, #0078d4, #005a9e); }
.app-teams    { background: linear-gradient(135deg, #6264a7, #464775); }
.app-sharepoint { background: linear-gradient(135deg, #038387, #025f62); }
.app-onedrive { background: linear-gradient(135deg, #0078d4, #00b4ef); }

/* Cloud Visual */
.cloud-visual {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.cloud-nodes { position: relative; width: 280px; height: 220px; }
.cloud-node {
  position: absolute; width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(31,43,195,0.3);
}
.cloud-node svg { width: 26px; height: 26px; }
.cn-center {
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 70px; height: 70px; border-radius: 20px;
  background: linear-gradient(135deg, #0078d4, #004e8c);
  border: none; box-shadow: 0 0 40px rgba(0,120,212,0.5);
}
.cn-1 { left: 10px; top: 20px; background: rgba(0,120,212,0.15); }
.cn-2 { right: 10px; top: 20px; background: rgba(0,120,212,0.15); }
.cn-3 { left: 10px; bottom: 20px; background: rgba(31,43,195,0.15); }
.cn-4 { right: 10px; bottom: 20px; background: rgba(31,43,195,0.15); }
.cn-5 { left: 50%; top: 10px; transform: translateX(-50%); background: rgba(31,43,195,0.15); }
.cn-6 { left: 50%; bottom: 10px; transform: translateX(-50%); background: rgba(31,43,195,0.15); }

/* Slide Content */
.slide-content { position: relative; z-index: 2; padding: 0 6%; max-width: 560px; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31,43,195,0.15); border: 1px solid rgba(31,43,195,0.3);
  border-radius: 20px; padding: 6px 14px; margin-bottom: 24px;
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600;
  color: #7b85f0; letter-spacing: 1px; text-transform: uppercase;
}
.slide-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: #7b85f0; animation: blink 1.5s infinite; }
.slide-content h1 {
  font-size: clamp(32px, 4.5vw, 58px); font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px;
}
.slide-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.slide-content p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 14px; padding: 14px 28px; border-radius: 10px;
  text-decoration: none; box-shadow: 0 6px 24px rgba(31,43,195,0.4); transition: all 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(31,43,195,0.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.3); color: white;
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 14px; padding: 14px 28px; border-radius: 10px;
  text-decoration: none; transition: all 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.carousel-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s;
}
.dot.active { width: 28px; background: var(--orange); }

.carousel-arrows {
  position: absolute; bottom: 24px; right: 6%; display: flex; gap: 10px; z-index: 10;
}
.arrow-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; backdrop-filter: blur(8px);
}
.arrow-btn:hover { background: var(--orange); border-color: var(--orange); }

/* ─── SECTION BASE ─── */
section { padding: 100px 6%; }

.section-tag {
  display: inline-block;
  background: rgba(31,43,195,0.1); color: var(--green);
  border: 1px solid rgba(31,43,195,0.2);
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--text-dark);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 540px; }
.section-header { margin-bottom: 60px; }

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

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: white; border-radius: 18px; padding: 32px;
  border: 1px solid var(--gray); transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--green), var(--green-light)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #0078d4, #00b4ef); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #6264a7, #8b8dc9); }

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(31,43,195,0.1), rgba(31,43,195,0.06));
  border: 1px solid rgba(31,43,195,0.15);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--green); }
.service-card:nth-child(2) .service-icon { background: rgba(0,120,212,0.08); border-color: rgba(0,120,212,0.15); }
.service-card:nth-child(2) .service-icon svg { color: #0078d4; }
.service-card:nth-child(3) .service-icon { background: rgba(98,100,167,0.08); border-color: rgba(98,100,167,0.15); }
.service-card:nth-child(3) .service-icon svg { color: #6264a7; }

/* Area badges on service cards */
.service-area-badge {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.badge-network { background: rgba(0,150,136,0.1); color: #00796b; border: 1px solid rgba(0,150,136,0.2); }
.badge-cloud   { background: rgba(0,120,212,0.1); color: #0078d4; border: 1px solid rgba(0,120,212,0.2); }
.badge-m365    { background: rgba(98,100,167,0.1); color: #6264a7; border: 1px solid rgba(98,100,167,0.2); }

.service-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.service-highlights { list-style: none; margin-bottom: 22px; }
.service-highlights li {
  font-size: 13px; color: var(--text-mid); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.3px; transition: gap 0.2s;
}
.service-card:nth-child(2) .card-link { color: #0078d4; }
.service-card:nth-child(3) .card-link { color: #6264a7; }
.card-link:hover { gap: 10px; }

/* ─── SOLUTIONS ─── */
#solucoes { background: white; }

.solutions-list { display: flex; flex-direction: column; gap: 28px; }
.solution-item {
  display: flex; gap: 28px; align-items: flex-start;
  background: var(--gray-light); border-radius: 20px;
  padding: 36px; border: 1px solid var(--gray); transition: all 0.3s;
}
.solution-item:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.1); }

.solution-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.solution-icon-wrap svg { width: 30px; height: 30px; color: white; }

.solution-body { flex: 1; }

/* Area labels on solution items */
.solution-area-label {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
}
.label-network { background: rgba(0,150,136,0.1); color: #00796b; border: 1px solid rgba(0,150,136,0.2); }
.label-cloud   { background: rgba(0,120,212,0.1); color: #0078d4; border: 1px solid rgba(0,120,212,0.2); }
.label-m365    { background: rgba(98,100,167,0.1); color: #6264a7; border: 1px solid rgba(98,100,167,0.2); }

.solution-body h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.solution-body > p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }

/* Two column list inside solutions */
.solution-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 22px;
}
.solution-detail-col h4 {
  font-size: 12px; font-weight: 700; color: var(--text-dark);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
}
.solution-detail-col ul { list-style: none; }
.solution-detail-col li {
  font-size: 13px; color: var(--text-mid); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.solution-detail-col li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ─── ABOUT ─── */
#sobre {
  background: linear-gradient(160deg, #111e8a 0%, #090d38 100%);
  color: white; position: relative; overflow: hidden;
}
#sobre::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,43,195,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#sobre .section-tag { background: rgba(255,255,255,0.1); color: #7b85f0; border-color: rgba(255,255,255,0.15); }
#sobre .section-title { color: white; }
#sobre .section-sub { color: rgba(255,255,255,0.65); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text { position: relative; z-index: 2; }
.about-text p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800;
  background: linear-gradient(90deg, white, #b8f5d0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-number span { font-size: 22px; color: var(--orange); -webkit-text-fill-color: var(--orange); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.about-visual { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 22px;
  display: flex; align-items: flex-start; gap: 16px;
  backdrop-filter: blur(10px); transition: all 0.3s;
}
.about-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(31,43,195,0.3); }
.about-card-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(31,43,195,0.3), rgba(31,43,195,0.1));
  display: flex; align-items: center; justify-content: center;
}
.about-card-icon svg { width: 22px; height: 22px; color: #7b85f0; }
.about-card h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 4px; }
.about-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

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

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.contact-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text-mid); }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: white; border: 1px solid var(--gray);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--green); }

.contact-form {
  background: white; border-radius: 20px; padding: 40px;
  border: 1px solid var(--gray); box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.contact-form .form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--text-mid);
  letter-spacing: 0.5px; margin-bottom: 6px; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-dark);
  background: var(--gray-light); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(31,43,195,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-whatsapp {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 15px; padding: 16px 28px; border-radius: 12px;
  border: none; cursor: pointer; margin-top: 8px;
  box-shadow: 0 6px 24px rgba(37,99,211,0.35); transition: all 0.25s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(31,43,195,0.45); }
.btn-whatsapp svg { width: 22px; height: 22px; }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.6);
  padding: 60px 6% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  color: white; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer-logo-text { color: white; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; }
.footer-logo-text span { color: var(--orange); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(9,13,56,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: white; text-decoration: none; font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 700; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: white; cursor: pointer; font-size: 28px;
}:root {
  --green: #1F2BC3;
  --green-light: #4553d4;
  --green-dark: #111e8a;
  --orange: #1F2BC3;
  --orange-light: #4553d4;
  --white: #ffffff;
  --gray-light: #f4f6fb;
  --gray: #e2e8f4;
  --text-dark: #0d1433;
  --text-mid: #2c3a6b;
  --text-muted: #6b7aaa;
  --azure: #1F2BC3;
  --teams: #4553d4;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 72px;
  background: rgba(9,13,56,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

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

/* Logo real no nav */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  /* A logo tem fundo transparente, funciona direto no nav escuro */
}

/* Logo no footer (fundo escuro — mantém as cores originais) */
.logo-img-footer {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

.logo-text { color: white; }
.logo-text span:first-child {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px;
  letter-spacing: -0.3px; display: block; line-height: 1;
}
.logo-text span:last-child {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: white; }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
  color: white !important; font-weight: 600 !important;
  padding: 9px 20px !important; border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(31,43,195,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(31,43,195,0.45) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* ─── HERO / CAROUSEL ─── */
#home { height: 100vh; min-height: 600px; position: relative; overflow: hidden; }

.carousel { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; }

.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(9,13,56,0.93) 40%, rgba(9,13,56,0.55) 100%);
}

.slide-1 .slide-bg {
  background-color: #060d2e;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(31,43,195,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(31,43,195,0.15) 0%, transparent 60%);
}
.slide-2 .slide-bg {
  background-color: #07112a;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,120,212,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(31,43,195,0.12) 0%, transparent 60%);
}
.slide-3 .slide-bg {
  background-color: #080a20;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(98,100,167,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(31,43,195,0.12) 0%, transparent 60%);
}

.slide-visual {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 42%; max-width: 520px;
  display: flex; align-items: center; justify-content: center; opacity: 0.92;
}

/* Server Rack */
.server-rack {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
  backdrop-filter: blur(10px); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.server-rack::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,43,195,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.rack-unit {
  height: 28px; border-radius: 6px;
  background: linear-gradient(90deg, rgba(31,43,195,0.18), rgba(31,43,195,0.06));
  border: 1px solid rgba(31,43,195,0.2);
  display: flex; align-items: center; padding: 0 12px; gap: 8px;
  position: relative; overflow: hidden;
}
.rack-unit::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--green-light); box-shadow: 0 0 8px var(--green-light);
}

.rack-led { width: 6px; height: 6px; border-radius: 50%; margin-left: auto; }
.rack-led.green { background: #7b85f0; box-shadow: 0 0 6px #7b85f0; animation: blink 2s infinite; }
.rack-led.orange { background: var(--orange-light); box-shadow: 0 0 6px var(--orange-light); animation: blink 3s infinite 1s; }
.rack-text { font-family: 'Sora', sans-serif; font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; }

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

.rack-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(31,43,195,0.15); border: 1px solid rgba(31,43,195,0.3);
  border-radius: 20px; padding: 4px 12px;
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 600;
  color: #7b85f0; letter-spacing: 1px;
}

.floating-pill {
  position: absolute;
  background: rgba(9,13,56,0.8); border: 1px solid rgba(31,43,195,0.3);
  backdrop-filter: blur(10px); border-radius: 40px; padding: 8px 16px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600;
  color: white; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.fp-1 { bottom: -20px; left: -20px; animation: float1 4s ease-in-out infinite; }
.fp-2 { top: -15px; right: 20px; animation: float2 5s ease-in-out infinite 1s; }
@keyframes float1 { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-8px) } }
@keyframes float2 { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(6px) } }

.fp-dot { width: 8px; height: 8px; border-radius: 50%; background: #7b85f0; box-shadow: 0 0 8px #7b85f0; }
.fp-dot.orange { background: var(--orange-light); box-shadow: 0 0 8px var(--orange-light); }

/* MS365 Visual */
.ms365-visual {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
  backdrop-filter: blur(10px); padding: 28px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.ms365-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; }
.ms-app {
  aspect-ratio: 1; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 600; color: white;
  transition: transform 0.2s;
}
.ms-app:hover { transform: scale(1.05); }
.ms-app svg { width: 28px; height: 28px; }
.app-outlook  { background: linear-gradient(135deg, #0078d4, #005a9e); }
.app-teams    { background: linear-gradient(135deg, #6264a7, #464775); }
.app-sharepoint { background: linear-gradient(135deg, #038387, #025f62); }
.app-onedrive { background: linear-gradient(135deg, #0078d4, #00b4ef); }

/* Cloud Visual */
.cloud-visual {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.cloud-nodes { position: relative; width: 280px; height: 220px; }
.cloud-node {
  position: absolute; width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(31,43,195,0.3);
}
.cloud-node svg { width: 26px; height: 26px; }
.cn-center {
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 70px; height: 70px; border-radius: 20px;
  background: linear-gradient(135deg, #0078d4, #004e8c);
  border: none; box-shadow: 0 0 40px rgba(0,120,212,0.5);
}
.cn-1 { left: 10px; top: 20px; background: rgba(0,120,212,0.15); }
.cn-2 { right: 10px; top: 20px; background: rgba(0,120,212,0.15); }
.cn-3 { left: 10px; bottom: 20px; background: rgba(31,43,195,0.15); }
.cn-4 { right: 10px; bottom: 20px; background: rgba(31,43,195,0.15); }
.cn-5 { left: 50%; top: 10px; transform: translateX(-50%); background: rgba(31,43,195,0.15); }
.cn-6 { left: 50%; bottom: 10px; transform: translateX(-50%); background: rgba(31,43,195,0.15); }

/* Slide Content */
.slide-content { position: relative; z-index: 2; padding: 0 6%; max-width: 560px; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31,43,195,0.15); border: 1px solid rgba(31,43,195,0.3);
  border-radius: 20px; padding: 6px 14px; margin-bottom: 24px;
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600;
  color: #7b85f0; letter-spacing: 1px; text-transform: uppercase;
}
.slide-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: #7b85f0; animation: blink 1.5s infinite; }
.slide-content h1 {
  font-size: clamp(32px, 4.5vw, 58px); font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px;
}
.slide-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.slide-content p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 14px; padding: 14px 28px; border-radius: 10px;
  text-decoration: none; box-shadow: 0 6px 24px rgba(31,43,195,0.4); transition: all 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(31,43,195,0.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.3); color: white;
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 14px; padding: 14px 28px; border-radius: 10px;
  text-decoration: none; transition: all 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.carousel-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s;
}
.dot.active { width: 28px; background: var(--orange); }

.carousel-arrows {
  position: absolute; bottom: 24px; right: 6%; display: flex; gap: 10px; z-index: 10;
}
.arrow-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; backdrop-filter: blur(8px);
}
.arrow-btn:hover { background: var(--orange); border-color: var(--orange); }

/* ─── SECTION BASE ─── */
section { padding: 100px 6%; }

.section-tag {
  display: inline-block;
  background: rgba(31,43,195,0.1); color: var(--green);
  border: 1px solid rgba(31,43,195,0.2);
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--text-dark);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 540px; }
.section-header { margin-bottom: 60px; }

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

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: white; border-radius: 18px; padding: 32px;
  border: 1px solid var(--gray); transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--green), var(--green-light)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #0078d4, #00b4ef); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #6264a7, #8b8dc9); }

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(31,43,195,0.1), rgba(31,43,195,0.06));
  border: 1px solid rgba(31,43,195,0.15);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--green); }
.service-card:nth-child(2) .service-icon { background: rgba(0,120,212,0.08); border-color: rgba(0,120,212,0.15); }
.service-card:nth-child(2) .service-icon svg { color: #0078d4; }
.service-card:nth-child(3) .service-icon { background: rgba(98,100,167,0.08); border-color: rgba(98,100,167,0.15); }
.service-card:nth-child(3) .service-icon svg { color: #6264a7; }

/* Area badges on service cards */
.service-area-badge {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.badge-network { background: rgba(0,150,136,0.1); color: #00796b; border: 1px solid rgba(0,150,136,0.2); }
.badge-cloud   { background: rgba(0,120,212,0.1); color: #0078d4; border: 1px solid rgba(0,120,212,0.2); }
.badge-m365    { background: rgba(98,100,167,0.1); color: #6264a7; border: 1px solid rgba(98,100,167,0.2); }

.service-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.service-highlights { list-style: none; margin-bottom: 22px; }
.service-highlights li {
  font-size: 13px; color: var(--text-mid); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.service-highlights li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.3px; transition: gap 0.2s;
}
.service-card:nth-child(2) .card-link { color: #0078d4; }
.service-card:nth-child(3) .card-link { color: #6264a7; }
.card-link:hover { gap: 10px; }

/* ─── SOLUTIONS ─── */
#solucoes { background: white; }

.solutions-list { display: flex; flex-direction: column; gap: 28px; }
.solution-item {
  display: flex; gap: 28px; align-items: flex-start;
  background: var(--gray-light); border-radius: 20px;
  padding: 36px; border: 1px solid var(--gray); transition: all 0.3s;
}
.solution-item:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.1); }

.solution-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.solution-icon-wrap svg { width: 30px; height: 30px; color: white; }

.solution-body { flex: 1; }

/* Area labels on solution items */
.solution-area-label {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
}
.label-network { background: rgba(0,150,136,0.1); color: #00796b; border: 1px solid rgba(0,150,136,0.2); }
.label-cloud   { background: rgba(0,120,212,0.1); color: #0078d4; border: 1px solid rgba(0,120,212,0.2); }
.label-m365    { background: rgba(98,100,167,0.1); color: #6264a7; border: 1px solid rgba(98,100,167,0.2); }

.solution-body h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.solution-body > p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }

/* Two column list inside solutions */
.solution-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 22px;
}
.solution-detail-col h4 {
  font-size: 12px; font-weight: 700; color: var(--text-dark);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
}
.solution-detail-col ul { list-style: none; }
.solution-detail-col li {
  font-size: 13px; color: var(--text-mid); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.solution-detail-col li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ─── ABOUT ─── */
#sobre {
  background: linear-gradient(160deg, #111e8a 0%, #090d38 100%);
  color: white; position: relative; overflow: hidden;
}
#sobre::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,43,195,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#sobre .section-tag { background: rgba(255,255,255,0.1); color: #7b85f0; border-color: rgba(255,255,255,0.15); }
#sobre .section-title { color: white; }
#sobre .section-sub { color: rgba(255,255,255,0.65); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text { position: relative; z-index: 2; }
.about-text p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800;
  background: linear-gradient(90deg, white, #b8f5d0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-number span { font-size: 22px; color: var(--orange); -webkit-text-fill-color: var(--orange); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.about-visual { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 22px;
  display: flex; align-items: flex-start; gap: 16px;
  backdrop-filter: blur(10px); transition: all 0.3s;
}
.about-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(31,43,195,0.3); }
.about-card-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(31,43,195,0.3), rgba(31,43,195,0.1));
  display: flex; align-items: center; justify-content: center;
}
.about-card-icon svg { width: 22px; height: 22px; color: #7b85f0; }
.about-card h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 4px; }
.about-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

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

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.contact-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text-mid); }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: white; border: 1px solid var(--gray);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--green); }

.contact-form {
  background: white; border-radius: 20px; padding: 40px;
  border: 1px solid var(--gray); box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.contact-form .form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--text-mid);
  letter-spacing: 0.5px; margin-bottom: 6px; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-dark);
  background: var(--gray-light); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(31,43,195,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-whatsapp {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 15px; padding: 16px 28px; border-radius: 12px;
  border: none; cursor: pointer; margin-top: 8px;
  box-shadow: 0 6px 24px rgba(37,99,211,0.35); transition: all 0.25s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(31,43,195,0.45); }
.btn-whatsapp svg { width: 22px; height: 22px; }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.6);
  padding: 60px 6% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  color: white; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer-logo-text { color: white; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; }
.footer-logo-text span { color: var(--orange); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(9,13,56,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: white; text-decoration: none; font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 700; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: white; cursor: pointer; font-size: 28px;
}

/* ═══════════════════════════════════════════
   RESPONSIVIDADE COMPLETA
   Breakpoints:
   - 1200px → tablet landscape / desktop pequeno
   - 1024px → tablet landscape
   -  900px → tablet portrait
   -  768px → tablet pequeno / mobile grande
   -  480px → mobile padrão
   -  360px → mobile pequeno
═══════════════════════════════════════════ */

/* ── 1200px: Desktop pequeno ── */
@media (max-width: 1200px) {
  /* Services: 3 colunas → 2 colunas no desktop pequeno */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero: reduz tamanho do visual */
  .slide-visual { width: 38%; }
  .slide-content { max-width: 500px; }
  .slide-content h1 { font-size: clamp(28px, 3.5vw, 46px); }

  /* Footer: 4 colunas → 2+2 */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 1024px: Tablet landscape ── */
@media (max-width: 1024px) {
  section { padding: 80px 5%; }

  /* About: lado a lado → empilhado */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Reduz padding do nav */
  nav { padding: 0 4%; }

  /* Solutions: ícone + texto lado a lado mas menor */
  .solution-item { padding: 28px; gap: 20px; }
  .solution-icon-wrap { width: 54px; height: 54px; }

  /* Stat numbers menores */
  .stat-number { font-size: 30px; }
}

/* ── 900px: Tablet portrait ── */
@media (max-width: 900px) {
  /* NAV: esconde links, mostra hambúrguer */
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 5%; height: 64px; }

  /* HERO: esconde visual, texto centralizado */
  .slide-visual { display: none; }
  .slide-content {
    max-width: 100%;
    padding: 0 5%;
    text-align: center;
  }
  .slide-content h1 { font-size: clamp(28px, 5vw, 42px); letter-spacing: -1px; }
  .slide-content p { font-size: 15px; }
  .hero-btns { justify-content: center; }
  .slide-tag { margin-left: auto; margin-right: auto; }

  /* SERVICES: 2 colunas → 1 coluna */
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  /* SOLUTIONS: flex coluna */
  .solution-item { flex-direction: column; gap: 16px; padding: 24px; }
  .solution-detail-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 768px: Tablet pequeno / mobile grande ── */
@media (max-width: 768px) {
  section { padding: 70px 5%; }

  /* Hero */
  #home { min-height: 100svh; }
  .slide-content h1 { font-size: clamp(26px, 6vw, 38px); }
  .carousel-dots { bottom: 24px; }
  .carousel-arrows { display: none; } /* esconde setas, mantém dots */

  /* Section headers */
  .section-title { font-size: clamp(24px, 5vw, 34px); }
  .section-sub { font-size: 14px; }
  .section-header { margin-bottom: 40px; }

  /* Service cards */
  .service-card { padding: 24px; }
  .service-highlights li { font-size: 12px; }

  /* Solutions */
  .solution-body h3 { font-size: 17px; }
  .solution-body > p { font-size: 13px; }
  .solution-detail-col li { font-size: 12px; }

  /* About cards */
  .about-card { padding: 18px; }
  .about-card h4 { font-size: 13px; }
  .about-card p { font-size: 12px; }
  .stats-grid { gap: 12px; }
  .stat-number { font-size: 28px; }

  /* Contact form */
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col h4 { font-size: 11px; }
  .footer-col a { font-size: 13px; }
}

/* ── 480px: Mobile padrão ── */
@media (max-width: 480px) {
  section { padding: 60px 4%; }

  /* NAV */
  nav { padding: 0 4%; height: 60px; }
  .logo-text span:first-child { font-size: 15px; }
  .logo-text span:last-child { font-size: 9px; }

  /* HERO */
  .slide-content { padding: 0 4%; }
  .slide-content h1 { font-size: clamp(22px, 7vw, 32px); letter-spacing: -0.5px; }
  .slide-content p { font-size: 14px; margin-bottom: 24px; }
  .slide-tag { font-size: 10px; padding: 5px 12px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary,
  .btn-outline { width: 100%; max-width: 320px; justify-content: center; padding: 13px 20px; font-size: 13px; }

  /* SECTION */
  .section-title { letter-spacing: -0.5px; }
  .section-tag { font-size: 10px; }

  /* SERVICES */
  .services-grid { max-width: 100%; }
  .service-card { padding: 20px; }
  .service-icon { width: 44px; height: 44px; }
  .service-card h3 { font-size: 16px; }

  /* SOLUTIONS */
  .solution-item { padding: 20px; }
  .solution-icon-wrap { width: 48px; height: 48px; border-radius: 14px; }
  .solution-icon-wrap svg { width: 24px; height: 24px; }
  .solution-area-label { font-size: 9px; }

  /* ABOUT */
  .stats-grid { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .stat-number { font-size: 24px; }
  .stat-number span { font-size: 16px; }
  .stat-label { font-size: 11px; }
  .about-card { flex-direction: column; gap: 10px; padding: 16px; }
  .about-card-icon { width: 38px; height: 38px; }

  /* CONTACT */
  .contact-form { padding: 20px; border-radius: 16px; }
  .contact-form h3 { font-size: 18px; }
  .btn-whatsapp { font-size: 14px; padding: 14px 20px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; font-size: 12px; }
  footer { padding: 48px 4% 28px; }
}

/* ── 360px: Mobile pequeno ── */
@media (max-width: 360px) {
  section { padding: 56px 4%; }

  nav { padding: 0 4%; }
  .logo-icon { width: 34px; height: 34px; }
  .logo-text span:first-child { font-size: 14px; }

  .slide-content h1 { font-size: 22px; }
  .slide-content p { font-size: 13px; }

  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-item { display: flex; align-items: center; gap: 12px; }
  .stat-number { font-size: 28px; }

  .contact-form { padding: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 13px; padding: 10px 12px; }
}