/* ===================================================
   OpenAtlas — style.css
   Paleta: Navy #0D2137, Teal #1AB8C4, Teal-light #25D4E2
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D2137;
  --navy-mid:   #0F2D48;
  --navy-light: #1A3A55;
  --teal:       #1AB8C4;
  --teal-light: #25D4E2;
  --teal-dark:  #0F8C96;
  --white:      #FFFFFF;
  --gray-100:   #F0F4F8;
  --gray-200:   #D9E2EC;
  --gray-400:   #829AB1;
  --gray-600:   #486581;
  --font-main:  'Outfit', 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 8px 32px rgba(13,33,55,0.18);
  --shadow-lg:  0 20px 60px rgba(13,33,55,0.28);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(26,184,196,0.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,184,196,0.5);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 6px 30px rgba(26,184,196,0.45);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,184,196,0.6);
  color: var(--white);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
  color: var(--white);
}

.mt-1 { margin-top: 24px; }

/* ===== SECTION COMMONS ===== */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(26,184,196,0.12);
  color: var(--teal);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.light .section-title { color: var(--white); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, var(--teal-light), #7FECF4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(13,33,55,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mini globe for nav */
.globe-mini {
  position: relative;
  width: 36px;
  height: 36px;
}
.globe-mini.small { width: 28px; height: 28px; }
.globe-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(26,184,196,0.4);
}
.globe-circle::after {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  width: 120%; height: 1px;
  background: rgba(255,255,255,0.3);
}
.globe-pixels {
  position: absolute;
  top: 0; right: -8px;
  display: grid;
  grid-template-columns: repeat(3,6px);
  gap: 2px;
}
.globe-pixels span {
  width: 5px; height: 5px;
  background: var(--teal-light);
  border-radius: 1px;
  opacity: 0.7;
  animation: pixelFloat 3s infinite;
}
.globe-pixels span:nth-child(2) { animation-delay: 0.3s; opacity: 0.5; }
.globe-pixels span:nth-child(3) { animation-delay: 0.6s; opacity: 0.3; }
.globe-pixels span:nth-child(4) { animation-delay: 0.9s; opacity: 0.6; }
.globe-pixels span:nth-child(5) { animation-delay: 1.2s; opacity: 0.4; }
.globe-pixels span:nth-child(6) { animation-delay: 1.5s; opacity: 0.2; }
.globe-pixels span:nth-child(7) { animation-delay: 0.4s; opacity: 0.4; }
.globe-pixels span:nth-child(8) { animation-delay: 0.8s; opacity: 0.25; }
.globe-pixels span:nth-child(9) { animation-delay: 1.1s; opacity: 0.15; }

@keyframes pixelFloat {
  0%, 100% { transform: translateY(0); opacity: inherit; }
  50% { transform: translateY(-3px); opacity: 0.9; }
}

.logo-text { font-family: var(--font-main); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.logo-open { color: var(--white); }
.logo-atlas { color: var(--teal-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 40%, #0B2840 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,184,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,184,196,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,184,196,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,33,55,0.5) 0%, transparent 70%);
  bottom: 0; left: -50px;
}

.hero-particles {
  position: absolute;
  inset: 0;
}
.hero-particles .particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--teal-light);
  border-radius: 50%;
  opacity: 0;
  animation: particleAnim linear infinite;
}

@keyframes particleAnim {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(26,184,196,0.1);
  border: 1px solid rgba(26,184,196,0.3);
  border-radius: 50px;
  color: var(--teal-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* Hero logo block */
.hero-logo-block {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Large Globe */
.globe-large {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.globe-sphere {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B2840 0%, #1565C0 50%, var(--teal) 100%);
  border: 2px solid rgba(26,184,196,0.35);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(26,184,196,0.25),
    inset 0 0 30px rgba(13,33,55,0.5);
  animation: globeSpin 20s linear infinite;
}

@keyframes globeSpin {
  from { box-shadow: 0 0 40px rgba(26,184,196,0.25), inset 0 0 30px rgba(13,33,55,0.5); }
  50%  { box-shadow: 0 0 60px rgba(26,184,196,0.4),  inset 0 0 30px rgba(13,33,55,0.5); }
  to   { box-shadow: 0 0 40px rgba(26,184,196,0.25), inset 0 0 30px rgba(13,33,55,0.5); }
}

.globe-lines {
  position: absolute;
  inset: 0;
}
.globe-meridian {
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: rgba(255,255,255,0.2);
  transform: translateX(-50%);
}
.globe-meridian.m2 {
  width: 100%; height: 1px;
  top: 50%; left: 0;
  transform: translateY(-50%);
  border-radius: 0;
}
.globe-parallel {
  position: absolute;
  top: 30%; left: 50%;
  width: 80%; height: 1px;
  background: rgba(255,255,255,0.15);
  transform: translateX(-50%);
}
.globe-parallel.p2 { top: 70%; }

.globe-nodes { position: absolute; inset: 0; }
.node {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal-light);
}
.n1 { top: 30%; left: 40%; }
.n2 { top: 60%; left: 25%; }
.n3 { top: 45%; left: 65%; }
.n4 { top: 20%; left: 55%; }
.n5 { top: 70%; left: 55%; }

/* Pixel cloud */
.globe-pixel-cloud {
  position: absolute;
  top: 10px; right: -20px;
  display: grid;
  grid-template-columns: repeat(4, 10px);
  grid-template-rows: repeat(3, 10px);
  gap: 4px;
}
.px {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 2px;
  animation: pxFloat 3s infinite;
}
.px1 { opacity: 0.9; animation-delay: 0s;    width: 10px; height: 10px; }
.px2 { opacity: 0.75; animation-delay: 0.2s; }
.px3 { opacity: 0.6;  animation-delay: 0.4s; width: 6px; height: 6px; }
.px4 { opacity: 0.8;  animation-delay: 0.6s; }
.px5 { opacity: 0.55; animation-delay: 0.8s; width: 6px; height: 6px; }
.px6 { opacity: 0.4;  animation-delay: 1.0s; width: 4px; height: 4px; }
.px7 { opacity: 0.7;  animation-delay: 0.3s; }
.px8 { opacity: 0.45; animation-delay: 0.7s; width: 5px; height: 5px; }
.px9 { opacity: 0.35; animation-delay: 1.1s; width: 4px; height: 4px; }
.px10 { opacity: 0.55; animation-delay: 0.5s; }
.px11 { opacity: 0.3;  animation-delay: 0.9s; width: 4px; height: 4px; }
.px12 { opacity: 0.2;  animation-delay: 1.3s; width: 3px; height: 3px; }

@keyframes pxFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.1); }
}

.hero-brand { text-align: left; }
.brand-name {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
.brand-open { color: var(--white); }
.brand-atlas { color: var(--teal-light); }

.brand-slogan {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.dot-sep {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
}
.separator {
  color: var(--teal-light);
  font-weight: 900;
}

.hero-phrase {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.highlight-teal {
  color: var(--teal-light);
  font-weight: 700;
}

.hero-cta-bar {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 50px;
  animation: fadeInUp 0.8s ease 0.5s both;
  box-shadow: 0 6px 30px rgba(26,184,196,0.4);
}
.cta-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.7s both;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 500;
  animation: fadeIn 1s 1.2s both;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== SOBRE ===== */
.section-sobre {
  padding: 100px 0;
  background: var(--white);
}
.sobre-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 28px;
}
.sobre-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.sobre-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.sobre-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(26,184,196,0.3);
}
.sobre-card:hover::before { opacity: 1; }
.sobre-card.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(26,184,196,0.3);
}
.sobre-card.featured h3,
.sobre-card.featured p { color: var(--white); }
.sobre-card.featured .sc-icon { color: var(--teal-light); }

.sc-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,184,196,0.08);
  border-radius: 14px;
  color: var(--teal);
  margin-bottom: 20px;
}
.sobre-card.featured .sc-icon { background: rgba(26,184,196,0.15); }

.sobre-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.sobre-card p { color: var(--gray-600); line-height: 1.7; }

/* ===== PILARES ===== */
.section-pilares {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}
.pilares-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pilares-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,184,196,0.1) 0%, transparent 65%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.pilar-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.pilar-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(26,184,196,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.pilar-icon {
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(26,184,196,0.15), rgba(26,184,196,0.05));
  border-radius: 18px;
  color: var(--teal-light);
  margin-bottom: 24px;
  border: 1px solid rgba(26,184,196,0.2);
}

.pilar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.pilar-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.pilar-footer { display: flex; flex-wrap: wrap; gap: 8px; }
.pilar-tag {
  padding: 4px 12px;
  background: rgba(26,184,196,0.12);
  color: var(--teal-light);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(26,184,196,0.2);
}

/* ===== FUNCIONALIDADES ===== */
.section-funcionalidades {
  padding: 100px 0;
  background: var(--gray-100);
}

.func-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 24px;
}

.func-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(13,33,55,0.06);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.func-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(26,184,196,0.25);
}

.func-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.func-icon.blue {
  background: rgba(13,33,55,0.06);
  color: var(--navy);
}
.func-icon.teal {
  background: rgba(26,184,196,0.1);
  color: var(--teal-dark);
}

.func-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.func-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== DADOS ABERTOS ===== */
.section-dados {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, #0B2840 0%, var(--navy) 100%);
  overflow: hidden;
}
.dados-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.dados-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,184,196,0.12) 0%, transparent 60%);
  bottom: -200px; right: -100px;
  border-radius: 50%;
}

.dados-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.dados-desc {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 20px 0 28px;
}

.dados-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.dados-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.check-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,184,196,0.15);
  color: var(--teal-light);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(26,184,196,0.3);
}

.dados-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dados-cards-float {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.float-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  animation: slideInRight 0.6s ease both;
}
.fc1 { animation-delay: 0.1s; }
.fc2 { animation-delay: 0.2s; }
.fc3 { animation-delay: 0.3s; }
.fc4 { animation-delay: 0.4s; }

.float-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(26,184,196,0.3);
  transform: translateX(6px);
}

.fc-logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  flex-shrink: 0;
}
.ibge   { background: linear-gradient(135deg, #1565C0, #1AB8C4); }
.datasus{ background: linear-gradient(135deg, #0D7A6B, #1AB8C4); }
.inep   { background: linear-gradient(135deg, #5E35B1, #1AB8C4); }
.transp { background: linear-gradient(135deg, #1B5E20, #1AB8C4); }

.fc-info { flex: 1; }
.fc-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.fc-count {
  display: block;
  font-size: 0.72rem;
  color: var(--teal-light);
  margin-top: 3px;
}
.fc-status {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fc-status.active {
  background: #4CAF50;
  box-shadow: 0 0 8px rgba(76,175,80,0.5);
  animation: pulse 2s infinite;
}

/* ===== IA ===== */
.section-ia {
  padding: 100px 0;
  background: var(--white);
}

.ia-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.ia-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}
.ia-feat:hover {
  border-color: rgba(26,184,196,0.35);
  background: rgba(26,184,196,0.03);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,184,196,0.1);
}

.ia-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,184,196,0.1);
  color: var(--teal-dark);
  border-radius: 12px;
}
.ia-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ia-text p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Chat demo */
.ia-chat-demo {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.chat-avatar {
  width: 32px; height: 32px;
  background: rgba(26,184,196,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
}
.chat-online {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: #4CAF50;
}
.chat-online span {
  width: 7px; height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.chat-messages {
  padding: 24px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 88%;
  animation: fadeInUp 0.5s ease both;
}
.chat-msg.bot {
  background: var(--white);
  color: var(--navy);
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 2px 8px rgba(13,33,55,0.08);
  align-self: flex-start;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
  animation-delay: 0.3s;
}
.chat-msg.typing {
  padding: 18px;
  display: flex; gap: 6px; align-items: center;
  animation-delay: 0.6s;
}
.typing-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
}

/* ===== VALORES ===== */
.section-valores {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  overflow: hidden;
}
.valores-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,184,196,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,184,196,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 28px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.valor-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.valor-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(26,184,196,0.3);
  transform: translateY(-6px);
}

.valor-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,184,196,0.12);
  color: var(--teal-light);
  border-radius: 18px;
  border: 1px solid rgba(26,184,196,0.2);
}
.valor-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.valor-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.valores-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.vb-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.vb-sep { color: rgba(255,255,255,0.2); }

/* ===== CTA FINAL ===== */
.section-cta { padding: 80px 0; background: var(--white); }
.cta-box {
  position: relative;
  padding: 72px 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(26,184,196,0.2);
}
.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,184,196,0.2) 0%, transparent 60%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 16px 0;
}
.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-slogan {
  color: rgba(255,255,255,0.25);
  font-size: 0.72rem;
  letter-spacing: 1px;
}
.footer-col h5 {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Intersection Observer animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .dados-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,33,55,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open + .nav-actions {
    display: flex;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: rgba(13,33,55,0.98);
    position: fixed;
    top: calc(70px + 200px);
    left: 0; right: 0;
  }
  .hamburger { display: flex; }
  .hero-logo-block { flex-direction: column; gap: 16px; }
  .hero-brand { text-align: center; }
  .brand-slogan { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { padding: 20px 24px; gap: 16px; }
  .stat-divider { display: none; }
}
