/* =================================================================
   OPEN INDUSTRY — Data Spaces  ·  Stylesheet
   ================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #061226;
  --blue-800: #0a1f44;
  --blue-700: #0a3d8f;
  --blue-600: #0e52c1;
  --blue-500: #1a6fdb;
  --cyan:     #00b4d8;
  --cyan-300: #4fd6f0;
  --green:    #00c48c;

  --ink:      #16243a;
  --ink-soft: #56698a;
  --line:     #e2ebf6;
  --bg:       #f5f9fd;
  --bg-soft:  #eef4fb;
  --white:    #ffffff;

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(10, 61, 143, .08);
  --shadow-lg: 0 24px 60px rgba(10, 61, 143, .16);
  --ease:      cubic-bezier(.16, 1, .3, 1);

  --maxw: 1180px;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .86em; background: rgba(14,82,193,.08); padding: 2px 6px; border-radius: 5px; color: var(--blue-700); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Section heading ===== */
.section-head { text-align: center; margin-bottom: 56px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--blue-800); line-height: 1.18;
}
.section-head.light .section-title { color: var(--white); }
.section-sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.04rem; }
.section-head.light .section-sub { color: rgba(255,255,255,.72); }

.label-tag {
  display: inline-block; font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-600); background: rgba(14, 82, 193, .09);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.label-tag.light { color: var(--cyan-300); background: rgba(0, 180, 216, .14); }

.grad-text {
  background: linear-gradient(100deg, var(--cyan) 0%, var(--cyan-300) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  padding: 14px 30px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
}
.btn-primary { background: linear-gradient(100deg, var(--blue-600), var(--blue-500)); color: var(--white); box-shadow: 0 8px 24px rgba(26, 111, 219, .35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(26, 111, 219, .45); }
.btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--blue-700); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; }

/* ===== Progress + back to top ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--cyan), var(--blue-500)); z-index: 1100; transition: width .1s linear; }
.back-to-top { position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--blue-700); color: var(--white); border: none; font-size: 1.2rem; cursor: pointer; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s var(--ease); z-index: 1000; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-600); transform: translateY(-3px); }

/* ===== Header ===== */
#header { position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--nav-h); display: flex; align-items: center; background: transparent; transition: background .4s var(--ease), box-shadow .4s var(--ease); }
#header.scrolled { background: rgba(6, 18, 38, .92); backdrop-filter: blur(14px); box-shadow: 0 6px 24px rgba(0, 0, 0, .25); }
.nav-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { background: var(--white); padding: 8px 14px; border-radius: 10px; display: inline-flex; box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: transform .3s var(--ease); }
.logo img { height: 30px; width: auto; }
.logo:hover { transform: translateY(-1px); }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a { position: relative; color: rgba(255, 255, 255, .82); font-size: .85rem; font-weight: 500; padding: 9px 11px; border-radius: 8px; transition: color .25s; white-space: nowrap; }
.nav-menu a:hover { color: var(--white); }
.nav-menu a::after { content: ''; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 2px; background: var(--cyan); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-menu a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--cyan); color: var(--blue-900) !important; font-weight: 700 !important; padding: 9px 18px !important; margin-left: 8px; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--cyan-300); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--nav-h) 24px 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 50% -10%, #0e3a86 0%, var(--blue-900) 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.glow-1 { width: 480px; height: 480px; background: var(--blue-500); top: -120px; left: -80px; animation: float 12s ease-in-out infinite; }
.glow-2 { width: 420px; height: 420px; background: var(--cyan); bottom: -140px; right: -60px; animation: float 14s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,30px); } }

.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-tag { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--cyan-300); margin-bottom: 18px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5.6vw, 4.1rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; color: var(--white); margin-bottom: 22px; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255, 255, 255, .76); max-width: 640px; margin: 0 auto 18px; line-height: 1.7; }
.hero-alianca { font-size: .98rem; color: rgba(255,255,255,.66); margin-bottom: 36px; }
.hero-alianca strong { color: var(--cyan-300); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1; }
.hero-scroll span { display: block; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .35); border-radius: 14px; position: relative; }
.hero-scroll span::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--cyan); border-radius: 2px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ===== Números ===== */
.numeros { padding: 100px 0; background: var(--blue-900); color: var(--white); }
.numeros-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.numero-card { background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 40px 28px; text-align: center; transition: transform .4s var(--ease), border-color .3s; }
.numero-card:hover { transform: translateY(-6px); border-color: rgba(0, 180, 216, .5); }
.numero-top { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.numero-valor { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; background: linear-gradient(120deg, var(--cyan), var(--cyan-300)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.numero-unidade { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--cyan); }
.numero-label { font-size: .9rem; color: rgba(255, 255, 255, .6); margin-top: 14px; line-height: 1.5; }

/* ===== Sobre ===== */
.sobre { padding: 110px 0; background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: start; }
.sobre-texto h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -.02em; color: var(--blue-800); margin-bottom: 20px; }
.sobre-texto p { color: var(--ink-soft); margin-bottom: 16px; }
.sobre-cards { display: grid; gap: 14px; margin-top: 28px; }
.mini-card { border: 1px solid var(--line); border-left: 3px solid var(--cyan); border-radius: var(--radius-sm); padding: 16px 20px; transition: box-shadow .3s, transform .3s var(--ease); }
.mini-card:hover { box-shadow: var(--shadow); transform: translateX(3px); }
.mini-card h4 { font-family: var(--font-display); font-size: .98rem; color: var(--blue-700); margin-bottom: 4px; }
.mini-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

.aside-card { background: linear-gradient(165deg, var(--bg-soft), var(--white)); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); position: sticky; top: 96px; }
.aside-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--blue-800); margin-bottom: 20px; line-height: 1.3; }
.problema-lista { display: grid; gap: 16px; }
.problema-lista li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }
.problema-lista li::before { content: ''; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 3px; background: var(--cyan); }
.problema-lista strong { color: var(--ink); }

/* ===== Princípios ===== */
.principios { position: relative; padding: 110px 0; color: var(--white); overflow: hidden; }
.principios-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%); }
.principios-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(0,180,216,.25), transparent 45%), radial-gradient(circle at 10% 95%, rgba(26,111,219,.3), transparent 45%); }
.principios .container { position: relative; z-index: 1; }
.principios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.principio-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 36px 28px; transition: transform .4s var(--ease), border-color .3s; }
.principio-card:hover { transform: translateY(-6px); border-color: rgba(0,180,216,.5); }
.principio-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(0,180,216,.14); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.principio-icon svg { width: 28px; height: 28px; stroke: var(--cyan-300); stroke-width: 1.7; fill: rgba(0,180,216,.18); }
.principio-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; }
.principio-card p { font-size: .9rem; color: rgba(255,255,255,.66); line-height: 1.6; }
.principios-nota { text-align: center; max-width: 680px; margin: 44px auto 0; font-size: 1.02rem; color: rgba(255,255,255,.8); }
.principios-nota strong { color: var(--cyan-300); }

/* ===== Oportunidade ===== */
.oportunidade { padding: 110px 0; background: var(--bg); }
.oport-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.oport-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 30px 34px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.oport-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.oport-num { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 18px; }
.oport-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--blue-800); margin-bottom: 10px; line-height: 1.3; }
.oport-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== Setores ===== */
.setores { padding: 110px 0; background: var(--white); }
.setores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.setor-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; display: flex; flex-direction: column; }
.setor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.setor-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, rgba(14,82,193,.12), rgba(0,180,216,.12)); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.setor-icon svg { width: 30px; height: 30px; stroke: var(--blue-600); stroke-width: 1.7; fill: none; }
.setor-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--blue-800); margin-bottom: 10px; }
.setor-card p { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.setor-stat { display: block; margin-top: auto; font-size: .82rem; font-weight: 600; line-height: 1.45; color: var(--blue-700); background: rgba(14,82,193,.08); padding: 12px 16px; border-radius: 12px; border-left: 3px solid var(--blue-600); }

/* ===== Grupos de Trabalho ===== */
.grupos { padding: 110px 0; background: var(--bg); }
.gt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gt-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.gt-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.gt-card h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; color: var(--blue-800); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.gt-acts { display: flex; flex-direction: column; gap: 12px; }
.gt-acts li { position: relative; padding-left: 24px; font-size: .95rem; color: var(--ink); line-height: 1.5; }
.gt-acts li::before { content: ''; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-600), var(--cyan)); }
@media (max-width: 820px) { .gt-grid { grid-template-columns: 1fr; } }

/* ===== Vídeo ===== */
.video { padding: 110px 0; background: var(--blue-900); color: var(--white); }
.video-wrapper { max-width: 920px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); background: #000; aspect-ratio: 16 / 9; }
.video-wrapper video { width: 100%; height: 100%; display: block; object-fit: contain; background: #000; }
.video-nota { text-align: center; margin-top: 18px; font-size: .86rem; color: rgba(255,255,255,.5); }
.video-nota code { background: rgba(255,255,255,.1); color: var(--cyan-300); }

/* ===== ABINC ===== */
.abinc { padding: 110px 0; background: var(--bg); }
.abinc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.abinc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; border-top: 3px solid var(--cyan); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.abinc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.abinc-card h3 { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; color: var(--blue-700); margin-bottom: 10px; }
.abinc-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== Hubs (IDSA / Gaia-X) ===== */
.hubs { position: relative; padding: 110px 0; background: linear-gradient(160deg, #0e3a86 0%, var(--blue-900) 72%); color: var(--white); overflow: hidden; }
.hubs-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hubs-glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: var(--cyan); opacity: .14; filter: blur(120px); top: -140px; right: -80px; }
.hubs .container { position: relative; z-index: 1; }
.hubs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 920px; margin: 0 auto; }
.hub-card { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, border-color .3s; }
.hub-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); border-color: var(--cyan); box-shadow: var(--shadow-lg); }
.hub-logo { width: 100%; background: var(--white); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 22px 24px; }
.hub-logo .hub-brand { max-height: 46px; max-width: 76%; width: auto; object-fit: contain; }
.hub-flag-line { display: inline-flex; align-items: center; gap: 7px; padding-top: 11px; border-top: 1px solid var(--line); }
.hub-flag-line svg { width: 22px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.06); flex-shrink: 0; }
.hub-flag-line span { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--blue-800); }
.hub-card h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; color: var(--white); }
.hub-card p { font-size: .92rem; color: rgba(255,255,255,.72); line-height: 1.6; }
.hub-link { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--cyan-300); display: inline-flex; align-items: center; gap: 7px; transition: color .25s, gap .25s; }
.hub-card:hover .hub-link { color: var(--white); gap: 11px; }
@media (max-width: 680px) { .hubs-grid { grid-template-columns: 1fr; } }

/* ===== Notícias ===== */
.noticias { padding: 110px 0; background: var(--white); }
.noticias-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.noticias-grid:has(.noticia-card:only-child) { display: block; }
.noticias-grid .noticia-card:only-child { max-width: 760px; margin: 0 auto; flex-direction: row; }
.noticias-grid .noticia-card:only-child .noticia-img { width: 44%; height: auto; min-height: 240px; }
.noticia-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.noticia-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.noticia-img { height: 160px; background: linear-gradient(135deg, var(--c1, var(--blue-600)), var(--c2, var(--cyan))); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.noticia-img span { font-family: var(--font-display); font-weight: 700; color: rgba(255,255,255,.92); font-size: 1.1rem; letter-spacing: .02em; }
.noticia-img-foto { padding: 0; }
.noticia-img-foto img { width: 100%; height: 100%; object-fit: cover; }
.noticia-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.noticia-body time { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-500); }
.noticia-body h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--blue-800); margin: 8px 0 10px; line-height: 1.3; }
.noticia-body p { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.noticia-link { margin-top: 16px; font-weight: 600; font-size: .9rem; color: var(--blue-600); transition: gap .25s; }
.noticia-link:hover { color: var(--blue-500); }
.noticias-nota { text-align: center; margin-top: 32px; font-size: .86rem; color: var(--ink-soft); }

/* ===== Contato ===== */
.contato { padding: 110px 0; background: var(--blue-900); color: var(--white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.contato-info h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 1.95rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.25; }
.contato-intro { color: rgba(255, 255, 255, .7); margin-bottom: 36px; max-width: 420px; }
.contato-lista { display: flex; flex-direction: column; gap: 24px; }
.contato-lista li { display: flex; gap: 18px; align-items: flex-start; }
.contato-icone { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(0, 180, 216, .14); display: flex; align-items: center; justify-content: center; }
.contato-icone svg { width: 22px; height: 22px; stroke: var(--cyan-300); stroke-width: 1.7; fill: none; }
.contato-lista strong { display: block; color: var(--cyan-300); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 5px; }
.contato-lista div { font-size: .95rem; color: rgba(255, 255, 255, .8); line-height: 1.6; }
.contato-lista a { color: rgba(255, 255, 255, .8); transition: color .25s; }
.contato-lista a:hover { color: var(--cyan-300); }

.contato-form { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: rgba(255, 255, 255, .82); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; background: rgba(255, 255, 255, .07); border: 1.5px solid rgba(255, 255, 255, .14); border-radius: var(--radius-sm); padding: 13px 16px; color: var(--white); font-size: .95rem; font-family: inherit; transition: border-color .25s, background .25s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--cyan); background: rgba(255, 255, 255, .1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255, 255, 255, .38); }
.form-group textarea { resize: vertical; }

/* Captcha */
.captcha-box { display: flex; align-items: center; gap: 12px; }
.captcha-question { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--cyan-300); background: rgba(0,180,216,.12); border: 1px solid rgba(0,180,216,.3); border-radius: var(--radius-sm); padding: 11px 18px; white-space: nowrap; user-select: none; }
.captcha-refresh { flex-shrink: 0; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); color: var(--cyan-300); font-size: 1.2rem; cursor: pointer; transition: background .25s, transform .4s var(--ease); }
.captcha-refresh:hover { background: rgba(255,255,255,.12); transform: rotate(180deg); }
.captcha-box input { flex: 1; }
.captcha-hint { display: block; margin-top: 8px; font-size: .78rem; color: rgba(255,255,255,.5); }
.form-note { margin-top: 14px; font-size: .9rem; color: var(--green); text-align: center; min-height: 1em; }

/* ===== CTA final ===== */
.cta-final { position: relative; padding: 100px 0; text-align: center; color: var(--white); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, var(--blue-700), var(--blue-500)); }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(0,180,216,.4), transparent 55%); }
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-tag { font-family: var(--font-display); font-size: .82rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.cta-final h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.25; margin-bottom: 32px; }

/* ===== Parceiros ===== */
.parceiros-band { background: var(--white); padding: 48px 0; border-top: 1px solid var(--line); }
.parceiros-title { text-align: center; font-size: 1.1rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 28px; }
.parceiros-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px 56px; }
.parceiros-logos img { height: 46px; width: auto; max-width: 200px; object-fit: contain; }
.parceiros-logos img.logo-cni { height: 56px; max-width: 240px; }

/* ===== Footer ===== */
.footer { background: #04101f; color: rgba(255, 255, 255, .55); padding-top: 64px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 48px; }
.footer-brand { max-width: 360px; }
.footer-brand img { height: 34px; margin-bottom: 16px; background: var(--white); padding: 8px 12px; border-radius: 8px; }
.footer-brand p { font-size: .92rem; line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 28px; align-content: flex-start; }
.footer-nav a { font-size: .92rem; transition: color .25s; }
.footer-nav a:hover { color: var(--cyan-300); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .82rem; }
.footer-copy { opacity: .7; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .glow-1, .glow-2, .hero-scroll span::after { animation: none; } }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 44px; }
  .aside-card { position: static; }
}
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px; background: rgba(6, 18, 38, .98); backdrop-filter: blur(14px); padding: 16px 20px 24px; max-height: calc(100vh - var(--nav-h)); overflow-y: auto; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); box-shadow: 0 18px 40px rgba(0, 0, 0, .4); }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 14px; font-size: .98rem; }
  .nav-menu a::after { display: none; }
  .nav-menu a.active { background: rgba(255, 255, 255, .1); color: var(--white); }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  #header { background: rgba(6, 18, 38, .92); backdrop-filter: blur(14px); }
}
@media (max-width: 680px) {
  .noticias-grid .noticia-card:only-child { flex-direction: column; }
  .noticias-grid .noticia-card:only-child .noticia-img { width: 100%; min-height: 200px; }
}
@media (max-width: 560px) {
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .contato-form { padding: 26px; }
}

/* =================================================================
   ARTIGO / PÁGINA DE NOTÍCIA
   ================================================================= */
.article-page { background: var(--white); }
#header.solid { background: rgba(6, 18, 38, .96); backdrop-filter: blur(14px); box-shadow: 0 6px 24px rgba(0, 0, 0, .25); }

.article-hero { position: relative; padding: calc(var(--nav-h) + 60px) 0 60px; background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%); color: var(--white); overflow: hidden; }
.article-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(0,180,216,.22), transparent 45%); }
.article-hero .container { position: relative; z-index: 1; max-width: 820px; }
.breadcrumb { font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,.8); transition: color .25s; }
.breadcrumb a:hover { color: var(--cyan-300); }
.breadcrumb span { margin: 0 8px; opacity: .5; }
.article-cat { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-300); background: rgba(0,180,216,.14); padding: 6px 14px; border-radius: 100px; margin-bottom: 18px; }
.article-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 18px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: .9rem; color: rgba(255,255,255,.7); }
.article-meta time { display: inline-flex; align-items: center; gap: 7px; }

.article-body { padding: 70px 0 90px; }
.article-body .container { max-width: 820px; }
.article-figure { margin: 0 0 44px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.article-figure img { width: 100%; display: block; }
.article-figure figcaption { font-size: .82rem; color: var(--ink-soft); text-align: center; padding: 14px 18px; background: var(--bg); }
.article-content { font-size: 1.06rem; color: var(--ink); line-height: 1.85; }
.article-content > p { margin-bottom: 24px; }
.article-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--blue-800); margin: 44px 0 18px; letter-spacing: -.01em; }
.article-content h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--blue-700); margin: 32px 0 12px; }
.article-content strong { color: var(--blue-800); }
.article-content ul { margin: 0 0 24px; padding-left: 0; display: grid; gap: 12px; }
.article-content ul li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.article-content ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 10px; height: 10px; border-radius: 3px; background: var(--cyan); }
.article-content blockquote { margin: 32px 0; padding: 22px 28px; border-left: 4px solid var(--cyan); background: var(--bg); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1.12rem; font-style: italic; color: var(--blue-800); }
.article-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 48px; font-weight: 600; color: var(--blue-600); transition: gap .25s; }
.article-back:hover { gap: 12px; color: var(--blue-500); }
.article-share { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line); }
.article-share span { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* Download box */
.download-box { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin: 44px 0 8px; padding: 26px 30px; background: linear-gradient(135deg, var(--bg-soft), var(--white)); border: 1px solid var(--line); border-left: 4px solid var(--cyan); border-radius: var(--radius); }
.download-icon { flex-shrink: 0; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); display: flex; align-items: center; justify-content: center; }
.download-icon svg { width: 28px; height: 28px; stroke: var(--white); stroke-width: 1.8; fill: none; }
.download-info { flex: 1; min-width: 200px; }
.download-info strong { display: block; font-family: var(--font-display); font-size: 1.02rem; color: var(--blue-800); }
.download-info span { font-size: .9rem; color: var(--ink-soft); }
.download-box .btn { flex-shrink: 0; }
@media (max-width: 540px) { .download-box .btn { width: 100%; } }
