/* =========================================================
   SIRUS Hotsite – style.css
   Manual de Identidade Visual SIRUS v1.0
   Fontes: Outfit (headings) + Montserrat (body)
   Ícones: Lucide
   ========================================================= */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Cores institucionais (Manual §5) */
  --red:        #D64540;
  --red-dark:   #b53530;
  --red-soft:   #fdecea;
  --orange:     #F07C41;
  --orange-soft:#fde8d8;
  --blue:       #355070;
  --blue-mid:   #2a3f58;
  --blue-dark:  #1a2640;
  --blue-soft:  #e8ecf3;
  --green:      #3F704D;
  --green-soft: #e3f0e6;

  /* Neutras */
  --white:      #ffffff;
  --off-white:  #f6f8fb;
  --border:     #e2e8f0;
  --text-muted: #6b7a8d;
  --text-dark:  #1a2640;

  /* Tipografia */
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Montserrat', sans-serif;

  /* Espaçamentos e raios */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --section-py: 100px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(26,38,64,.06);
  --shadow-md: 0 8px 30px rgba(26,38,64,.12);
  --shadow-lg: 0 20px 60px rgba(26,38,64,.18);

  --transition: .3s cubic-bezier(.25,.46,.45,.94);
}

/* ── RESET + BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--blue);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-dark); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn i { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214,69,64,.3);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── PILL / LABELS ──────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 99px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.pill i { width: 14px; height: 14px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label i { width: 16px; height: 16px; }
.section-label.light { color: var(--orange); }

.section-title  { margin-bottom: 20px; }
.section-lead   { font-size: 1.15rem; max-width: 680px; color: var(--text-muted); margin-bottom: 60px; }
.section-title.light { color: var(--white); }
.section-lead.light  { color: rgba(255,255,255,.75); }

/* ── ANIMATION REVEAL ───────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.brand-logo { display: flex; align-items: center; }
.logo-svg { height: 62px; width: auto; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--blue);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.site-nav a:not(.btn):hover { color: var(--red); background: var(--red-soft); }

.nav-cta { padding: 10px 22px; font-size: .9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue);
  padding: 6px;
}
.nav-toggle i { width: 26px; height: 26px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--off-white) 0%, #dde4ee 100%);
}

/* grid background (Manual §3 – grid concept) */
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(53,80,112,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53,80,112,.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Blobs */
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.blob-1 { width: 560px; height: 560px; background: rgba(214,69,64,.12); top: -120px; right: -80px; }
.blob-2 { width: 400px; height: 400px; background: rgba(53,80,112,.12); bottom: -60px; left: -100px; }

/* ECG stripe */
.ecg-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  pointer-events: none; z-index: 1;
}
.ecg-stripe svg { width: 100%; height: 100%; }
.ecg-line {
  fill: none;
  stroke: var(--red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: ecg-draw 3.5s ease forwards .8s;
  opacity: .35;
}
@keyframes ecg-draw {
  to { stroke-dashoffset: 0; }
}

/* Hero layout */
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow { margin-bottom: 24px; }

h1#hero-heading {
  color: var(--blue);
  margin-bottom: 24px;
}
h1#hero-heading .highlight {
  color: var(--red);
  position: relative;
}
h1#hero-heading .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 4px;
  opacity: .35;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-num::after {
  content: "+";
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  margin-left: 2px;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: -4px;
}
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
}

/* App frame */
.hero-visual { position: relative; }

.app-frame {
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform .6s ease;
}
.app-frame:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.app-frame-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.traffic-lights { display: flex; gap: 7px; }
.tl { width: 12px; height: 12px; border-radius: 50%; }
.tl-red    { background: #ff5f57; }
.tl-yellow { background: #febc2e; }
.tl-green  { background: #28c840; }
.app-frame-url {
  font-family: var(--font-body);
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  padding: 3px 12px;
  border-radius: 6px;
}
.app-screenshot {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.float-badge i { width: 18px; height: 18px; color: var(--red); }

.badge-top    { top: -16px; right: -20px; animation: float 5s ease-in-out infinite; }
.badge-bottom { bottom: 20px; left: -24px; animation: float 5s ease-in-out infinite 2.5s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ── SOBRE ───────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section-sobre { background: var(--white); }

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.sobre-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}
.sobre-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.sobre-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--icon-bg, var(--red-soft));
  color: var(--icon-color, var(--red));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sobre-card-icon i { width: 28px; height: 28px; }
.sobre-card h3 { margin-bottom: 12px; font-size: 1.15rem; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 48px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -40px; top: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--red-soft);
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot.dot-orange { background: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.timeline-dot.dot-green  { background: var(--green);  box-shadow: 0 0 0 3px var(--green-soft); }

.timeline-content time {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-content h4 { margin-bottom: 8px; }

/* ── IMPACTO ─────────────────────────────────────────────── */
.bg-dark-navy { background: var(--blue-dark); }
.section-impacto { padding: var(--section-py) 0; }
.section-impacto .section-title.light   { color: var(--white); }
.section-impacto .section-lead { color: rgba(255,255,255,.65); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.impact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-mid);
  transition: var(--transition);
}
.impact-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.15);
}
.impact-card:hover::before { background: var(--red); }

.impact-card.featured {
  border-color: rgba(214,69,64,.4);
  background: rgba(214,69,64,.08);
}
.impact-card.featured::before { background: var(--red); }

.impact-card h3 { color: var(--white); margin-bottom: 12px; }
.impact-card p  { color: rgba(255,255,255,.6); font-size: .95rem; }

.impact-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(214,69,64,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--red);
}
.impact-icon i { width: 26px; height: 26px; }

.card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 99px;
  text-transform: uppercase;
}

/* ── EQUIPE / TEAM GRID ──────────────────────────────────── */
.section-equipe { background: var(--off-white); }
.section-equipe .section-lead { margin-bottom: 40px; }

/* ── Filter tabs */
.team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.tf-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 99px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.tf-btn i { width: 15px; height: 15px; }
.tf-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.tf-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ── Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 28px;
}

/* ── Member card */
.tm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.tm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: var(--transition);
}
.tm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.tm-card:hover::before { background: var(--red); }

/* Avatar (initials fallback) */
.tm-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--av-bg, var(--blue));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  flex-shrink: 0;
}

/* Photo (when provided) */
.tm-card > img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  display: block;
  flex-shrink: 0;
}
/* Hide fallback avatar if photo loads */
.tm-card > img + .tm-avatar { display: none; }

/* Info block */
.tm-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tm-info strong {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
}
.tm-info span {
  font-size: .82rem;
  color: var(--text-muted);
}

/* Role tag */
.tm-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 12px;
  border-radius: 99px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.tm-tag-coordenacao  { background: rgba(214,69,64,.1);  color: var(--red); }
.tm-tag-arquitetura  { background: rgba(53,80,112,.1);  color: var(--blue); }
.tm-tag-design       { background: rgba(240,124,65,.1); color: var(--orange); }
.tm-tag-desenvolvimento { background: rgba(53,80,112,.08); color: var(--blue-mid); }
.tm-tag-qa           { background: rgba(63,112,77,.1);  color: var(--green); }

/* Hidden state */
.tm-card.hidden { display: none; }




/* ── EXPANSÃO ────────────────────────────────────────────── */
.bg-gradient-red {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 50%, #3a1a1a 100%);
}

.inovacao-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.light-text { color: rgba(255,255,255,.72); }

.feature-list {
  display: flex; flex-direction: column; gap: 28px; margin-top: 40px;
}
.feature-list li {
  display: flex; gap: 20px; align-items: flex-start;
}
.fl-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(240,124,65,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.fl-icon i { width: 24px; height: 24px; }
.feature-list h4 { color: var(--white); margin-bottom: 6px; }
.feature-list p  { color: rgba(255,255,255,.6); font-size: .9rem; margin: 0; }

/* Certificate card */
.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.cert-seal {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  color: var(--blue);
}
.cert-seal i { width: 40px; height: 40px; }

.cert-card h3 { color: var(--blue); margin-bottom: 8px; font-size: 1.4rem; }
.cert-card > p { color: var(--text-muted); font-size: .9rem; }

.cert-org {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
}
.cert-org strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 4px;
}
.cert-org span { font-size: .8rem; color: var(--text-muted); }

.cert-year {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  margin: 8px 0;
}
.cert-note { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand { display: flex; gap: 0; flex-direction: column; position: relative; }

.footer-logo-mark {
  position: absolute;
  right: 0; top: -20px;
  height: 120px;
  opacity: 1;
  pointer-events: none;
}

.footer-contato {
  margin-top: 20px;
}

.footer-contato a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  text-decoration: none;
  color: inherit;
}

.footer-contato svg {
  opacity: 0.85;
}

.footer-contato a:hover svg {
  opacity: 1;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin: 0;
}
.footer-slogan {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 20px;
}
.footer-desc { font-size: .9rem; max-width: 280px; }

.footer-nav h4,
.footer-institucional h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  padding: 2px 0;
}
.footer-nav a:hover { color: var(--white); padding-left: 6px; }

.footer-institucional address {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-institucional address strong {
  color: var(--white);
  font-weight: 700;
}
.footer-institucional address p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.footer-institucional ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-institucional ul li {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid rgba(240,124,65,.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid,
  .equipe-grid,
  .inovacao-grid { grid-template-columns: 1fr; }

  .hero-visual { order: -1; }
  .app-frame { transform: none; max-width: 90%; margin: 0 auto; }
  .badge-top, .badge-bottom { display: none; }

  .equipe-visual { display: none; }

  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .sobre-grid  { grid-template-columns: repeat(2,1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: 70px; }

  /* Mantém Logo e Botão alinhados no topo sempre */
  .header-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 60px; /* Altura fixa no mobile para consistência */
  }

  .logo-img {
    max-width: 110px !important;
    height: auto;
    z-index: 1001; /* Fica acima do menu aberto */
  }

  /* BOTÃO TOGGLE - O "X" precisa ser visível */
  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 1001; /* Acima do overlay do menu */
    background: transparent;
    border: none;
    color: var(--blue);
    transition: color 0.3s ease;
  }

  /* Quando o menu está aberto, o botão fica branco para contrastar com o fundo escuro */
  .nav-toggle.active {
    color: var(--white) !important;
  }

  /* MENU MOBILE - OVERLAY TOTAL */
  .site-nav {
    display: none;
    position: fixed;
    top: 0 !important; /* Ignora o padding do header */
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--blue-dark); 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Abaixo do botão, mas acima do resto do site */
    padding: 20px;
    margin: 0;
  }

  .site-nav.open {
    display: flex !important;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .site-nav a:not(.btn) {
    color: var(--white);
    font-size: 1.6rem;
    font-family: var(--font-head);
    text-align: center;
    width: 100%;
    padding: 10px;
  }

  /* BOTÃO ACESSAR NO MENU */
  .nav-cta {
    margin-top: 30px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Ajustes de layout restantes */
  .sobre-grid, .impact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}