/* NetCenter - Corporate Website Styles */

:root{
  /* Brand palette - Harmonizado com logo NetCenter */
  --navy:    #233D52;
  --navy-d:  #1A2E3D;
  --navy-m:  #2B4A60;
  --blue:    #4AABE8;
  --blue-d:  #3795D4;
  --blue-l:  #6BB8E8;
  --blue-xl: #A5D4F1;
  --blue-bg: #EBF5FD;

  /* Light surface palette */
  --white:   #FFFFFF;
  --off:     #F8FBFD;
  --off2:    #F2F7FB;
  --text:    #1A2E3D;
  --muted:   #4A6577;
  --light:   #7A95A8;
  --border:  #D5E3ED;
  
  /* Gradient backgrounds (subtle blue tones) */
  --gradient-light: linear-gradient(165deg, #FAFCFE 0%, #F5FAFD 25%, #F0F7FC 50%, #F2F8FD 75%, #FAFCFE 100%);
  --gradient-alt: linear-gradient(165deg, #F2F7FC 0%, #EBF4FB 30%, #E8F3FB 60%, #EFF6FC 100%);

  /* Dark surface palette */
  --bd-dark: rgba(74,171,232,0.15);

  /* Typography */
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-accent: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-v: 72px;
  --container: 1160px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--gradient-light);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(74,171,232,0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(43,140,201,0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(184,221,239,0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
main {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-top: 110px;
}


/* nc superscript */
sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
  font-weight: inherit;
}

/* ══════════════════════════════════════
   LOGO COMPONENT
   Used in nav, hero, footer
══════════════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  border: none;
  outline: none;
}
.logo img {
  border: none;
  outline: none;
  display: block;
}
.logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }

/* Default logo (for hero - white text) */
.logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.005em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.logo-name span { 
  color: var(--blue-l); 
  text-shadow: 0 2px 12px rgba(74,171,232,0.4);
}
.logo-tagline {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(107,184,232,0.75);
  margin-top: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Nav logo variant (dark text on light background) */
nav .logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
nav .logo-tag {
  font-size: 11px;
  color: var(--blue-d);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 2px;
  opacity: 0.85;
}

/* Footer logo variant (light background) */
.logo-light .logo-name { color: var(--navy); }
.logo-light .logo-name span { color: var(--blue); }
.logo-light .logo-tagline { color: rgba(55,149,212,0.7); }

/* ══════════════════════════════════════
   NAV - Premium Design with Optimal Legibility
══════════════════════════════════════ */
.nav-bar {
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  height: 140px;
  background: linear-gradient(165deg, 
    #1A2E3D 0%,
    #233D52 25%,
    #2B4A60 50%,
    #233D52 75%,
    #1A2E3D 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(74,171,232,0.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 
              0 8px 40px rgba(0,0,0,0.25),
              0 2px 0 rgba(74,171,232,0.15),
              inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Premium glass effect on scroll */
nav.scrolled {
  background: linear-gradient(165deg, 
    #1A2E3D 0%,
    #233D52 25%,
    #2B4A60 50%,
    #233D52 75%,
    #1A2E3D 100%
  );
  box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 1px 0 rgba(74,171,232,0.2);
}

.nav-links {
  display: flex; gap: 0.3rem; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(74,171,232,0.25);
  text-shadow: 0 0 12px rgba(74,171,232,0.6), 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0 2px 8px rgba(74,171,232,0.2);
}

/* Active state */
.nav-links a.active {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(74,171,232,0.25) 0%, rgba(107,184,232,0.3) 100%);
  box-shadow: 0 0 12px rgba(74,171,232,0.3);
}

.nav-cta-link {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  box-shadow: 0 4px 16px rgba(74,171,232,0.45), 
              0 2px 8px rgba(0,0,0,0.2),
              inset 0 1px 0 rgba(255,255,255,0.25) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

.nav-cta-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 28px rgba(74,171,232,0.65),
              0 2px 12px rgba(0,0,0,0.25),
              inset 0 1px 0 rgba(255,255,255,0.3) !important;
  background: linear-gradient(135deg, var(--blue-l) 0%, var(--blue) 100%) !important;
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { 
  width:22px; height:2px; 
  background: rgba(255,255,255,0.9); 
  border-radius:2px;
  transition: all 0.3s;
}

/* Mobile menu - premium glass effect */
.mobile-nav {
  display:none; 
  position:fixed; 
  top:76px; 
  left:0; 
  right:0; 
  z-index:999;
  background: linear-gradient(165deg, 
    #1A2E3D 0%,
    #233D52 25%,
    #2B4A60 50%,
    #233D52 75%,
    #1A2E3D 100%
  );
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(74,171,232,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 4px 16px rgba(74,171,232,0.15);
  padding: 1rem 5vw 1.5rem; 
  flex-direction: column; 
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.mobile-nav.open { 
  display: flex; 
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  position: relative;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--blue-l) 0%, var(--blue) 100%);
  border-radius: 2px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(74,171,232,0.6);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(74,171,232,0.2) 0%, rgba(107,184,232,0.25) 100%);
  padding-left: 1.5rem;
}

.mobile-nav a:hover::before,
.mobile-nav a.active::before {
  height: 60%;
}

.mobile-nav a.active {
  font-weight: 700;
}

.nav-mobile-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  margin-top: 0.5rem !important;
  box-shadow: 0 4px 16px rgba(74,171,232,0.45), 
              inset 0 1px 0 rgba(255,255,255,0.25) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

.nav-mobile-cta:hover {
  background: linear-gradient(135deg, var(--blue-l) 0%, var(--blue) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,171,232,0.6) !important;
}

/* Breadcrumb - adjusted for light nav */
.breadcrumb {
  position: fixed;
  top: 140px;
  left: 0;
  right: 0;
  z-index: 998;
  height: 34px;
  background: linear-gradient(180deg, rgba(248,251,254,0.95) 0%, rgba(244,249,253,0.92) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,171,232,0.12);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: var(--muted);
}

/* Ocultar breadcrumb na homepage */
body:not(.has-breadcrumb) .breadcrumb {
  display: none;
}

.breadcrumb .sep { color: rgba(74,171,232,0.35); }
.breadcrumb .cur {
  color: var(--blue);
  font-weight: 700;
}

/* ══════════════════════════════════════
   HERO - Premium gradient with smooth animation
══════════════════════════════════════ */
.hero {
  background: 
    linear-gradient(165deg, 
      rgba(26,46,61,0.92) 0%,
      rgba(35,61,82,0.90) 25%,
      rgba(43,74,96,0.88) 50%,
      rgba(35,61,82,0.90) 75%,
      rgba(26,46,61,0.92) 100%
    ),
    url('../images/hero-home.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position:relative; overflow:hidden;
  padding: 160px 5vw 60px;
  color:#fff;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

/* Animated gradient overlay - Suavizado */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: 
    radial-gradient(ellipse 900px 700px at 25% 20%, rgba(74,171,232,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 700px 900px at 75% 80%, rgba(107,184,232,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 600px 600px at 50% 50%, rgba(165,212,241,0.10) 0%, transparent 70%);
  animation: heroFloat 30s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33% { transform: translate(2%, -3%) scale(1.05); opacity: 0.85; }
  66% { transform: translate(-2%, 2%) scale(0.98); opacity: 0.75; }
}

/* Smooth fade to next section - Transição suavizada */
.hero::after {
  content:''; 
  position:absolute; 
  bottom:0; 
  left:0; 
  right:0; 
  height:120px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(248,251,253,0.1) 25%,
    rgba(248,251,253,0.5) 50%,
    rgba(248,251,253,0.85) 75%, 
    var(--off) 100%);
  pointer-events:none;
  z-index: 1;
}
.hero-dots {
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(107,184,232,0.14) 1.5px, transparent 1.5px);
  background-size: 48px 48px;
  background-position: 0 0, 24px 24px;
  z-index: 0;
  opacity: 0.35;
  animation: dotsDrift 40s linear infinite;
}

@keyframes dotsDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}
.hero-glow {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 65% 75% at 80% 30%, rgba(74,171,232,0.14) 0%,transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(107,184,232,0.11) 0%,transparent 65%),
    radial-gradient(ellipse 30% 40% at 50% 50%, rgba(165,212,241,0.08) 0%,transparent 60%);
  z-index: 0;
  animation: glowPulse 20s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}
.hero-inner { 
  position:relative; 
  max-width:var(--container); 
  margin:0 auto; 
  z-index: 2;
  animation: heroContentFadeIn 1s ease-out;
}

@keyframes heroContentFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-min { 
  min-height: calc(100vh - 180px); 
  display:flex; 
  align-items:center; 
}

/* Hero with image background */
.hero-img {
  background-size: cover;
  background-position: center center;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,46,0.95) 0%,
    rgba(30,52,69,0.88) 40%,
    rgba(30,52,69,0.75) 70%,
    rgba(74,171,232,0.25) 100%
  );
  z-index: 1;
}
.hero-img .hero-dots,
.hero-img .hero-glow {
  z-index: 2;
}
.hero-img .hero-inner {
  z-index: 3;
}
.hero-img-caption {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  z-index: 4;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-img-caption a {
  color: rgba(74,171,232,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-img-caption a:hover {
  color: rgba(74,171,232,0.7);
}

/* Hero logo lockup */
.hero-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 2.5rem;
}
.hero-lockup-icon {
  background: rgba(74,171,232,0.1);
  border: 1px solid rgba(74,171,232,0.2);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-lockup-text {}
.hero-lockup-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 5px;
}
.hero-lockup-name span { color: var(--blue); }
.hero-lockup-tag {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(74,171,232,0.6);
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  color: #fff;
}
h1 em { font-style: italic; color: var(--blue); font-weight: 700; }
.hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(196,220,240,0.78);
  max-width: 560px;
  margin-bottom: 2.4rem;
  line-height: 1.7;
  letter-spacing: 0.005em;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }

/* Stats bar */
.stats-bar {
  background: var(--navy);
  padding: 1.8rem 5vw;
  display:flex; justify-content:center; gap:5rem; flex-wrap:wrap;
  border-bottom: 1px solid rgba(74,171,232,0.1);
}
.stat { text-align:center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.66rem;
  font-weight: 600;
  color: rgba(180,215,240,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   CONTENT SECTIONS - Smooth transitions
══════════════════════════════════════ */

/* Generic section wrapper */
.section {
  padding: var(--section-v) 5vw;
  position: relative;
  transition: background 0.6s ease;
}

/* Section with light background */
.section-light {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.98) 0%,
    rgba(250,253,255,0.95) 50%,
    rgba(255,255,255,0.98) 100%
  );
}

/* Section with subtle pattern */
.section-pattern {
  background: 
    radial-gradient(circle at 20% 30%, rgba(74,171,232,0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(43,140,201,0.015) 0%, transparent 50%),
    linear-gradient(180deg, #FAFCFE 0%, #F8FBFD 50%, #FAFCFE 100%);
}

/* Smooth fade between sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.3) 30%,
    rgba(255,255,255,0.7) 60%,
    rgba(255,255,255,1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.content {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: var(--section-v) 5vw;
  position: relative;
}
.content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(74,171,232,0.01) 0%, 
    rgba(74,171,232,0.02) 50%, 
    rgba(74,171,232,0.01) 100%);
  pointer-events: none;
}
.content .inner {
  position: relative;
  z-index: 1;
}

.content-alt {
  background: linear-gradient(165deg, 
    rgba(242,247,252,0.9) 0%, 
    rgba(235,244,251,0.92) 30%, 
    rgba(230,242,250,0.9) 60%, 
    rgba(238,245,252,0.92) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--section-v) 5vw;
  border-top: 1px solid rgba(205,221,233,0.5);
  border-bottom: 1px solid rgba(205,221,233,0.5);
  position: relative;
}
.content-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, 
    rgba(74,171,232,0.03) 0%, 
    transparent 70%);
  pointer-events: none;
}

.inner { max-width:var(--container); margin:0 auto; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   TYPOGRAPHY – Premium hierarchy
══════════════════════════════════════ */
.label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-d);
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.85rem;
  background: linear-gradient(135deg, rgba(74,171,232,0.08) 0%, rgba(74,171,232,0.12) 100%);
  border: 1px solid rgba(74,171,232,0.25);
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(74,171,232,0.1);
  transition: all 0.3s ease;
}

.label:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74,171,232,0.18);
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--navy);
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-l) 100%);
  border-radius: 2px;
  opacity: 0;
  transition: all 0.4s ease;
}

h2:hover::after {
  opacity: 1;
  width: 100px;
}

h2 em { font-style: italic; color: var(--blue-d); font-weight: 700; }

h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  color: var(--navy);
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: 0.002em;
}

p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
  max-width: 720px;
  margin-bottom: 2rem;
}

strong {
  font-weight: 600;
  color: var(--navy);
}
  color: var(--text);
  letter-spacing: 0.005em;
  line-height: 1.3;
}
.lead {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 580px;
  margin-bottom: 2.8rem;
  line-height: 1.75;
  letter-spacing: 0.005em;
}
p.body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  letter-spacing: 0.003em;
}

/* ══════════════════════════════════════
   BUTTONS (Premium Edition with Border Effects)
══════════════════════════════════════ */
.btn {
  font-family: var(--font-body);
  display: inline-flex; align-items:center; gap:0.4rem;
  padding: 0.75rem 1.6rem; border-radius:10px;
  font-weight: 600; font-size: 0.9rem; letter-spacing:0.015em;
  border:none; cursor:pointer; text-decoration:none;
  position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Primary Button - Glowing border effect */
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: #fff;
  box-shadow: 
    0 4px 16px rgba(74,171,232,0.35),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--blue-l), var(--blue), var(--blue-d));
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 28px rgba(74,171,232,0.5),
    0 0 0 4px rgba(74,171,232,0.1),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(74,171,232,0.4);
}

/* Ghost Button - Shimmer border effect */
.btn-ghost {
  background: rgba(74,171,232,0.06);
  border: 2px solid rgba(74,171,232,0.25);
  color: #fff;
  position: relative;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74,171,232,0.5),
    transparent
  );
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.4s;
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.btn-ghost:hover {
  background: rgba(74,171,232,0.15);
  border-color: rgba(74,171,232,0.6);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 24px rgba(74,171,232,0.25),
    inset 0 1px 0 rgba(74,171,232,0.2);
}
.btn-ghost:hover::before { opacity: 1; }

/* Outline Button - Animated border gradient */
.btn-outline {
  background: #fff;
  border: 2px solid transparent;
  color: var(--blue-d);
  font-size: 0.85rem;
  background-clip: padding-box;
  position: relative;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    var(--blue-l),
    var(--blue),
    var(--blue-d),
    var(--blue),
    var(--blue-l)
  );
  background-size: 300% 300%;
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  animation: borderGradient 3s ease infinite;
}
@keyframes borderGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue-bg);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-outline:hover {
  color: var(--blue-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,171,232,0.15);
}
.btn-outline:hover::before { opacity: 1; }
.btn-outline:hover::after { opacity: 1; }

/* Form Button - Solid with inner glow */
.btn-form {
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 14px rgba(74,171,232,0.35),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-form::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(74,171,232,0.45),
    0 0 0 4px rgba(74,171,232,0.1),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-form:hover::before { opacity: 1; }
.btn-form:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(74,171,232,0.35);
}

/* Disable shimmer animation on reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn-ghost::before { animation: none; }
  .btn-outline::before { animation: none; }
}


/* ══════════════════════════════════════
   CARDS (Enhanced for gradient background)
══════════════════════════════════════ */
.card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 
    0 1px 4px rgba(13,31,46,0.05), 
    0 4px 16px rgba(13,31,46,0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(74,171,232,0.02) 0%, 
    transparent 50%);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.card:hover {
  background: rgba(255,255,255,0.98);
  border-color: rgba(74,171,232,0.4);
  box-shadow: 
    0 4px 8px rgba(13,31,46,0.06), 
    0 12px 32px rgba(74,171,232,0.12),
    0 0 0 1px rgba(74,171,232,0.1),
    inset 0 1px 0 rgba(255,255,255,1);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

.card-alt {
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.98) 0%, 
    rgba(250,253,255,0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 
    0 2px 8px rgba(13,31,46,0.04),
    0 8px 24px rgba(74,171,232,0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--blue) 0%, 
    var(--blue-l) 50%,
    var(--blue) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.card-alt:hover {
  background: linear-gradient(135deg, 
    rgba(255,255,255,1) 0%, 
    rgba(250,253,255,0.98) 100%);
  border-color: rgba(74,171,232,0.4);
  box-shadow: 
    0 4px 12px rgba(13,31,46,0.06),
    0 16px 40px rgba(74,171,232,0.12);
  transform: translateY(-3px);
}

.card-alt:hover::before {
  transform: translateX(0);
}

.card-sm {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 10px;
  padding: 1.3rem;
  box-shadow: 0 1px 6px rgba(13,31,46,0.04);
  transition: all 0.3s;
}
.card-sm:hover {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 12px rgba(74,171,232,0.08);
}

/* Icon badge */
.ibadge {
  width:44px; height:44px; border-radius:10px;
  background:var(--blue-bg); border:1px solid rgba(74,171,232,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; margin-bottom:1rem;
  transition: all 0.3s ease;
}

.ibadge:hover {
  background: linear-gradient(135deg, rgba(74,171,232,0.12) 0%, rgba(74,171,232,0.18) 100%);
  border-color: rgba(74,171,232,0.35);
  transform: scale(1.05) rotate(5deg);
}

/* Card icon (emoji/icon at card top) */
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(74,171,232,0.15));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon,
.card-alt:hover .card-icon {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 4px 8px rgba(74,171,232,0.25));
}

/* Grids */
.g2  { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.g2c { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.g3  { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.25rem; }
.g4  { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:1rem; }
.g6  { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:1rem; }

/* Chip */
.chip {
  display:inline-block; font-family:var(--font-body); font-size:0.67rem;
  font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--blue-d); background:var(--blue-bg);
  border:1px solid rgba(74,171,232,0.2); padding:0.2rem 0.6rem;
  border-radius:100px; margin-top:0.9rem;
}

/* Feature list */
.flist { list-style:none; display:flex; flex-direction:column; gap:0.65rem; }
.flist li {
  display:flex; align-items:center; gap:0.75rem;
  font-family:var(--font-body); font-size:0.92rem; color:var(--muted);
}
.flist li::before { content:''; width:6px; height:6px; border-radius:50%;
  background:var(--blue); flex-shrink:0; }

/* Metrics panel (on dark) */
.mpanel {
  background:rgba(74,171,232,0.07); border:1px solid rgba(74,171,232,0.18);
  border-radius:14px; padding:1.6rem; backdrop-filter:blur(8px);
}
.mrow { display:flex; align-items:center; justify-content:space-between;
  padding:0.75rem 0; border-bottom:1px solid rgba(74,171,232,0.12); }
.mrow:last-child { border-bottom:none; padding-bottom:0; }
.mlabel { font-family:var(--font-body); font-size:0.85rem; font-weight:300;
  color:rgba(196,220,240,0.6); }
.mval { font-family:var(--font-head); font-weight:800; font-size:1.35rem; color:var(--blue); }

/* Timeline */
.timeline { border-left:2px solid var(--border); padding-left:2rem;
  display:flex; flex-direction:column; gap:1.8rem; }
.tl-year { font-family:var(--font-head); font-weight:700; color:var(--blue-d);
  font-size:1rem; margin-bottom:0.2rem; position:relative; }
.tl-year::before { content:''; position:absolute; left:-2.38rem; top:0.3rem;
  width:10px; height:10px; border-radius:50%;
  background:var(--blue); border:2px solid var(--white); }
.tl-text { font-family:var(--font-body); font-weight:300;
  color:var(--muted); font-size:0.9rem; }

/* Tabs (Enhanced for gradient) */
.tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
  background: rgba(238,244,250,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
  border: 1px solid rgba(205,221,233,0.6);
  box-shadow: 0 2px 8px rgba(13,31,46,0.03);
}
.t {
  padding:0.42rem 1.1rem; border-radius:7px; font-size:0.8rem; cursor:pointer;
  font-family:var(--font-body); font-weight:500; color:var(--muted);
  transition:all 0.2s; border:none; background:none;
}
.t.active { background:#fff; color:var(--blue-d); font-weight:600;
  box-shadow:0 2px 8px rgba(13,31,46,0.1); }
.tc { display:none; animation:pgIn 0.25s ease both; }
.tc.active { display:block; }
@keyframes pgIn { from{opacity:0;transform:translateY(16px);} to{opacity:1;transform:none;} }

.tpanel {
  background: rgba(244,248,252,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(205,221,233,0.5);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 8px rgba(13,31,46,0.03);
}
.tpanel p { font-family:var(--font-body); font-weight:300;
  color:var(--muted); font-size:0.93rem; line-height:1.8; margin-bottom:1.1rem; }
.tpanel ul { list-style:none; display:flex; flex-direction:column; gap:0.55rem; }
.tpanel ul li { display:flex; align-items:center; gap:0.75rem;
  font-family:var(--font-body); font-size:0.9rem; color:var(--muted); }
.tpanel ul li::before { content:''; width:5px; height:5px; border-radius:50%;
  background:var(--blue); flex-shrink:0; }

/* Process steps (Glass effect) */
.ps {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 10px;
  padding: 1.3rem;
  position: relative;
  box-shadow: 
    0 1px 6px rgba(13,31,46,0.04),
    inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.ps:hover {
  background: rgba(255,255,255,0.98);
  box-shadow: 
    0 4px 12px rgba(74,171,232,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.ps-arrow { position:absolute; right:-0.8rem; top:50%; transform:translateY(-50%);
  font-size:1rem; color:var(--border); z-index:1; }
.ps-step { font-family:var(--font-body); font-size:0.65rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--blue-d); margin-bottom:0.35rem; }
.ps h4 { font-family:var(--font-head); font-size:0.88rem; font-weight:700;
  color:var(--text); margin-bottom:0.3rem; }
.ps p { font-family:var(--font-body); font-size:0.8rem; font-weight:300; color:var(--muted); }

/* Case box */
.casebox { background:var(--blue-bg); border:1px solid rgba(74,171,232,0.18);
  border-left:3px solid var(--blue); border-radius:10px;
  padding:1.8rem 2.2rem; max-width:720px; }
.case-label { font-family:var(--font-body); font-size:0.67rem; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--blue-d); margin-bottom:0.75rem; }
.casebox p { font-family:var(--font-body); font-weight:300;
  color:var(--muted); font-size:0.93rem; font-style:italic; line-height:1.85; }

/* Client tags (Glass effect) */
.cli-tags { display:flex; flex-wrap:wrap; gap:0.55rem; margin-top:1.4rem; }
.cli-tag {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 7px;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  box-shadow: 0 1px 3px rgba(13,31,46,0.04);
  transition: all 0.2s;
  cursor: default;
}
.cli-tag:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(74,171,232,0.4);
  color: var(--blue-d);
  box-shadow: 0 2px 6px rgba(74,171,232,0.08);
}

/* Sector (Glass effect) */
.sector {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 1px 5px rgba(13,31,46,0.04);
  transition: all 0.3s;
}
.sector:hover {
  background: rgba(255,255,255,0.98);
  border-color: rgba(74,171,232,0.35);
  box-shadow: 0 4px 12px rgba(74,171,232,0.08);
  transform: translateY(-2px);
}
.sector-name { font-family:var(--font-body); font-size:0.85rem; font-weight:400; color:var(--muted); }

/* Services (Glass effect) */
.srv {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 1px 6px rgba(13,31,46,0.05);
  transition: all 0.3s;
}
.srv:hover {
  background: rgba(255,255,255,0.98);
  border-color: rgba(74,171,232,0.3);
  box-shadow: 0 6px 24px rgba(74,171,232,0.1);
  transform: translateY(-3px);
}
.srv-num { font-family:var(--font-head); font-size:2rem; font-weight:800;
  color:rgba(74,171,232,0.18); line-height:1; margin-bottom:0.8rem; }

/* nc2 features (Glass effect) */
.nf {
  background: rgba(244,248,252,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(205,221,233,0.5);
  border-radius: 10px;
  padding: 1.3rem;
  transition: all 0.3s;
}
.nf:hover {
  background: rgba(244,248,252,0.95);
  box-shadow: 0 4px 12px rgba(74,171,232,0.06);
  transform: translateY(-2px);
}
.nf-label { font-family:var(--font-body); font-size:0.65rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--blue-d); margin-bottom:0.35rem; }
.nf h4 { font-family:var(--font-head); font-size:0.9rem; font-weight:700;
  color:var(--text); margin-bottom:0.3rem; }
.nf p { font-family:var(--font-body); font-weight:300; font-size:0.82rem;
  color:var(--muted); line-height:1.6; }

/* Home preview cards (Glass effect) */
.hpc {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow:0 1px 4px rgba(13,31,46,0.04), 0 4px 14px rgba(13,31,46,0.03);
  transition:all 0.2s; }
.hpc:hover { border-color:rgba(74,171,232,0.3);
  box-shadow:0 4px 8px rgba(13,31,46,0.06), 0 12px 30px rgba(74,171,232,0.08);
  transform:translateY(-3px); }
.hpc-icon { font-size:1.4rem; margin-bottom:0.85rem; }
.hpc p { font-family:var(--font-body); font-weight:300;
  font-size:0.87rem; color:var(--muted); line-height:1.7; margin-top:0.3rem; }
.see-more { font-family:var(--font-body); font-size:0.8rem; font-weight:600;
  color:var(--blue-d); cursor:pointer; margin-top:0.8rem;
  display:inline-flex; align-items:center; gap:4px;
  transition:color 0.2s; }
.see-more:hover { color:var(--blue); }

/* Value cards (Glass effect) */
.vc {
  background: linear-gradient(135deg, 
    rgba(238,244,250,0.92) 0%, 
    rgba(242,248,253,0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(205,221,233,0.5);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.vc:hover {
  background: linear-gradient(135deg, 
    rgba(238,244,250,0.98) 0%, 
    rgba(242,248,253,0.96) 100%);
  box-shadow: 0 4px 12px rgba(74,171,232,0.06);
  transform: translateY(-2px);
}
.vc-icon { font-size:1.5rem; margin-bottom:0.7rem; }
.vc h3 { margin-bottom:0.35rem; }
.vc p { font-family:var(--font-body); font-weight:300;
  font-size:0.87rem; color:var(--muted); margin-top:0.3rem; }

/* Contact (Premium Glass Form) */
.cform {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 
    0 4px 24px rgba(13,31,46,0.08),
    0 0 0 1px rgba(74,171,232,0.05),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.fg { margin-bottom:1.1rem; }
.fg label { display:block; font-family:var(--font-body); font-size:0.72rem; font-weight:600;
  letter-spacing:0.07em; text-transform:uppercase; color:var(--light); margin-bottom:0.4rem; }
.fg input,.fg textarea,.fg select {
  width:100%; background:var(--off); border:1px solid var(--border); border-radius:8px;
  padding:0.7rem 0.95rem; color:var(--text); font-family:var(--font-body); font-size:0.92rem;
  outline:none; transition:border-color 0.2s, box-shadow 0.2s;
}
.fg input:focus,.fg textarea:focus,.fg select:focus {
  border-color:var(--blue); box-shadow:0 0 0 3px rgba(74,171,232,0.1); background:#fff; }
.fg textarea { min-height:105px; resize:vertical; }
.fg select option { background:#fff; color:var(--text); }
.smsg { display:none; background:var(--blue-bg); border:1px solid rgba(74,171,232,0.2);
  border-radius:8px; padding:0.9rem; text-align:center;
  font-family:var(--font-body); font-size:0.88rem; color:var(--blue-d); margin-top:0.9rem; }

.ci { display:flex; align-items:flex-start; gap:0.9rem; margin-bottom:1.3rem; }
.ci-icon { width:40px; height:40px; background:var(--blue-bg);
  border:1px solid rgba(74,171,232,0.2); border-radius:9px;
  display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.ci-label { font-family:var(--font-body); font-size:0.67rem; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--light); margin-bottom:0.12rem; }
.ci-value { font-family:var(--font-body); font-size:0.94rem; color:var(--text); }

/* Divider */
.sdiv { height:1px; background:var(--border); margin:3rem 0; }

/* Utils */
.mt2{margin-top:2rem;} .mt3{margin-top:3rem;}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: linear-gradient(165deg, #1A2E3D 0%, #0F2030 100%);
  border-top:1px solid rgba(74,171,232,0.2);
  padding:4rem 5vw 2.5rem;
}
.footer-inner { max-width:var(--container); margin:0 auto; }
.footer-top {
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap:4rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(74,171,232,0.15);
  margin-bottom:2rem;
}
.footer-brand {
  max-width: 480px;
}
.footer-brand .logo-name { font-size:1.15rem; }
.footer-desc {
  font-family:var(--font-body); font-weight:300; font-size:0.82rem;
  color:rgba(180,215,240,0.35); max-width:260px; margin-top:0.75rem; line-height:1.7;
}
.footer-nav { 
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:2.5rem;
}
.footer-col {}
.footer-col-title { 
  font-family:var(--font-head); 
  font-weight:700; 
  font-size:0.85rem;
  letter-spacing:0.08em; 
  text-transform:uppercase; 
  color:rgba(74,171,232,0.7);
  margin-bottom:1.2rem;
}
.footer-col a { 
  display:block; 
  font-family:var(--font-body); 
  font-size:0.9rem;
  font-weight:400; 
  color:rgba(255,255,255,0.6);
  text-decoration:none; 
  transition:all 0.2s; 
  margin-bottom:0.7rem;
  padding:4px 0;
}
.footer-col a:hover { 
  color:rgba(255,255,255,0.95);
  padding-left:8px;
}
.footer-bottom { 
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  flex-wrap:wrap; 
  gap:1rem;
  padding-top:1.5rem;
}
.copy { 
  font-family:var(--font-body); 
  font-size:0.85rem;
  color:rgba(255,255,255,0.4); 
  font-weight:400;
}
.footer-tagline { 
  font-family:var(--font-body); 
  font-size:0.75rem; 
  font-weight:600;
  letter-spacing:0.15em; 
  text-transform:uppercase; 
  color:rgba(74,171,232,0.5);
}

@media(max-width:768px){
  .nav-links{display:none!important;} .hamburger{display:flex;}
  .g2,.g2c{grid-template-columns:1fr;gap:2rem;}
  .g3,.g4,.g6{grid-template-columns:1fr;}
  .stats-bar{gap:2rem;}
  .hero-lockup{ gap:12px; }
  .footer-top{
    grid-template-columns:1fr;
    gap:3rem;
  }
  .footer-nav{
    grid-template-columns:1fr;
    gap:2.5rem;
  }
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:0.8rem;}
}
/* ══════════════════════════════════════
   PHOTO STRIP
══════════════════════════════════════ */

/* ══════════════════════════════════════
   INSIGHTS GRID & CARDS
══════════════════════════════════════ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.insight-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(205,221,233,0.6);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 6px rgba(13,31,46,0.05);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-card:hover {
  background: rgba(255,255,255,0.98);
  border-color: rgba(74,171,232,0.3);
  box-shadow: 0 6px 24px rgba(74,171,232,0.12);
}

/* ══════════════════════════════════════
   UNIFORMIZAÇÃO DE CORES - PÁGINAS INTERNAS
══════════════════════════════════════ */

/* Hero para páginas internas (não-homepage) */
.hero-internal {
  background: linear-gradient(165deg,
    #1A2E3D 0%,
    #233D52 25%,
    #2B4A60 50%,
    #233D52 75%,
    #1A2E3D 100%
  );
  padding: 120px 5vw 96px;
  color: #fff;
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Background images por página */
.hero-internal.hero-triagem {
  background-image: 
    linear-gradient(165deg,
      rgba(26,46,61,0.90) 0%,
      rgba(35,61,82,0.88) 25%,
      rgba(43,74,96,0.85) 50%,
      rgba(35,61,82,0.88) 75%,
      rgba(26,46,61,0.90) 100%
    ),
    url('../images/hero-triagem.jpg');
}

.hero-internal.hero-metodo {
  background-image: 
    linear-gradient(165deg,
      rgba(26,46,61,0.90) 0%,
      rgba(35,61,82,0.88) 25%,
      rgba(43,74,96,0.85) 50%,
      rgba(35,61,82,0.88) 75%,
      rgba(26,46,61,0.90) 100%
    ),
    url('../images/hero-metodo.jpg');
}

.hero-internal.hero-experiencia {
  background-image: 
    linear-gradient(165deg,
      rgba(26,46,61,0.90) 0%,
      rgba(35,61,82,0.88) 25%,
      rgba(43,74,96,0.85) 50%,
      rgba(35,61,82,0.88) 75%,
      rgba(26,46,61,0.90) 100%
    ),
    url('../images/hero-casos.jpg');
}

.hero-internal.hero-solucoes {
  background-image: 
    linear-gradient(135deg,
      rgba(18,38,52,0.88) 0%,
      rgba(18,38,52,0.82) 40%,
      rgba(18,38,52,0.72) 100%
    ),
    url('../images/hero-capacidades.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-internal.hero-insights {
  background-image: 
    linear-gradient(165deg,
      rgba(26,46,61,0.90) 0%,
      rgba(35,61,82,0.88) 25%,
      rgba(43,74,96,0.85) 50%,
      rgba(35,61,82,0.88) 75%,
      rgba(26,46,61,0.90) 100%
    ),
    url('../images/hero-insights.jpg');
}

/* Transição suave para próxima seção */
.hero-internal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(248,251,253,0.1) 25%,
    rgba(248,251,253,0.5) 50%,
    rgba(248,251,253,0.85) 75%,
    var(--off) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Badge no hero */
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(74,171,232,0.2);
  color: var(--blue-l);
  border: 1px solid rgba(74,171,232,0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Título do hero interno */
.hero-headline-internal {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 24px;
  text-align: center;
}

/* Descrição do hero */
.hero-description {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Seções alternadas com fundo sutil */
.section-alt {
  background: linear-gradient(180deg,
    rgba(244,248,252,0.3) 0%,
    rgba(235,244,251,0.5) 50%,
    rgba(244,248,252,0.3) 100%
  );
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(74,171,232,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(43,140,201,0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Seções de CTA destacadas */
.section-cta {
  background: linear-gradient(165deg,
    rgba(30,52,69,0.04) 0%,
    rgba(35,61,82,0.06) 50%,
    rgba(30,52,69,0.04) 100%
  );
  border-top: 1px solid rgba(74,171,232,0.15);
  border-bottom: 1px solid rgba(74,171,232,0.15);
  position: relative;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(74,171,232,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Cards de processo melhorados */
.process-step {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(74,171,232,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-l), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(74,171,232,0.15);
  border-color: rgba(74,171,232,0.2);
}

.process-step:hover::before {
  transform: scaleX(1);
}

/* Tags de clientes melhoradas */
.client-tag {
  background: linear-gradient(135deg,
    rgba(74,171,232,0.08) 0%,
    rgba(107,184,232,0.12) 100%
  );
  border: 1px solid rgba(74,171,232,0.2);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.client-tag:hover {
  background: linear-gradient(135deg,
    rgba(74,171,232,0.15) 0%,
    rgba(107,184,232,0.2) 100%
  );
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74,171,232,0.2);
}

/* Responsividade para hero interno */
@media (max-width: 768px) {
  .hero-internal {
    padding: 80px 5vw 64px;
    min-height: 350px;
  }
  
  .hero-headline-internal {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
}

/* ══════════════════════════════════════
   DEGRADÊ AZUL PROGRESSIVO - SEÇÕES ATÉ RODAPÉ
══════════════════════════════════════ */

/* Seção 1 - Logo após hero (muito sutil) */
.section:nth-of-type(1),
.section-qualification {
  background: linear-gradient(180deg,
    rgba(248,251,253,1) 0%,
    rgba(245,250,253,1) 50%,
    rgba(242,249,253,1) 100%
  );
}

/* Seção 2 - Aumentando tom de azul */
.section:nth-of-type(2) {
  background: linear-gradient(180deg,
    rgba(242,249,253,1) 0%,
    rgba(240,248,253,1) 50%,
    rgba(237,247,252,1) 100%
  );
}

/* Seção 3 - Mais azul ainda */
.section:nth-of-type(3) {
  background: linear-gradient(180deg,
    rgba(237,247,252,1) 0%,
    rgba(233,245,252,1) 50%,
    rgba(230,244,251,1) 100%
  );
}

/* Seção 4 - Azul mais intenso */
.section:nth-of-type(4) {
  background: linear-gradient(180deg,
    rgba(230,244,251,1) 0%,
    rgba(226,242,250,1) 50%,
    rgba(222,240,249,1) 100%
  );
}

/* Seção 5 e seguintes - Tom azul mais escuro preparando para footer */
.section:nth-of-type(n+5) {
  background: linear-gradient(180deg,
    rgba(222,240,249,1) 0%,
    rgba(218,238,248,1) 50%,
    rgba(214,236,247,1) 100%
  );
}

/* Seção CTA (última antes do footer) - Tom mais escuro */
.section-cta {
  background: linear-gradient(180deg,
    rgba(214,236,247,1) 0%,
    rgba(208,233,246,1) 30%,
    rgba(202,230,245,1) 60%,
    rgba(196,227,244,0.95) 100%
  ) !important;
  border-top: 1px solid rgba(74,171,232,0.2);
  border-bottom: 1px solid rgba(74,171,232,0.25);
  position: relative;
}

/* Transição suave para o footer navy */
.section-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(26,46,61,0.05) 30%,
    rgba(26,46,61,0.15) 60%,
    rgba(26,46,61,0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Garantir que elementos internos fiquem acima do overlay */
.section-cta .section-inner {
  position: relative;
  z-index: 2;
}

/* Seções alternadas mantêm tom azul progressivo */
.section-alt {
  background: linear-gradient(180deg,
    rgba(235,244,251,0.5) 0%,
    rgba(228,242,250,0.6) 50%,
    rgba(220,239,249,0.5) 100%
  ) !important;
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(74,171,232,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(43,140,201,0.03) 0%, transparent 50%);
  pointer-events: none;
}
  transform: translateY(-3px);
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.insight-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue);
  background: rgba(74,171,232,0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.insight-reading {
  font-size: 12px;
  color: var(--light);
  font-weight: 500;
}

.insight-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.insight-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.insight-title a:hover {
  color: var(--blue-d);
}

.insight-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.insight-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.insight-topics span {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: rgba(13,31,46,0.05);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(205,221,233,0.5);
}

/* ══════════════════════════════════════
   PHOTO STRIP
══════════════════════════════════════ */
.photo-strip {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.photo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,31,46,0.72) 0%,
    rgba(30,52,69,0.45) 50%,
    rgba(74,171,232,0.12) 100%
  );
  z-index: 1;
}
.photo-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--white));
  z-index: 2;
  pointer-events: none;
}
.photo-strip-alt::after {
  background: linear-gradient(to bottom, transparent, var(--off));
}
.photo-strip-caption {
  position: absolute;
  bottom: 1.2rem; right: 1.8rem;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.57rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.photo-strip-caption a {
  color: rgba(74,171,232,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.photo-strip-caption a:hover { color: rgba(74,171,232,0.75); }
.photo-strip-label {
  position: absolute;
  bottom: 2.6rem; left: 5vw;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.photo-strip-label::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.photo-strip-label span {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74,171,232,0.65);
}
@media(max-width:768px){
  .photo-strip { height: 220px; }
  .photo-strip-label { display: none; }
}
