/* ===========================
   Reset e variáveis
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a3a0a;
  --green-mid:    #25500f;
  --green-main:   #3b6d11;
  --green-hover:  #4a8020;
  --green-pale:   #eaf3de;
  --text-dark:    #1a2e0a;
  --text-mid:     #3d4a30;
  --text-muted:   #5a6b48;
  --border:       #d4dbc9;
  --white:        #ffffff;
  --gray-bg:      #f5f7f2;
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.11);
  --shadow-green: 0 4px 18px rgba(59,109,17,0.38);
  --radius:       12px;
  --t:            0.25s ease;
  --danger:       #c0392b;
  --danger-bg:    #fdf3f2;
  --safe:         #1e6e2e;
  --safe-bg:      #f0faf2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  background: linear-gradient(90deg, #1a3a0a 0%, #2a5410 65%, #1e4a0c 100%);
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  box-shadow: 0 2px 14px rgba(0,0,0,0.38);
  transition: background .3s ease, transform .3s ease;
}
.navbar.scrolled { background: #152e08; }

.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-title { font-size: 14px; font-weight: 700; color: #fff; font-family: 'Merriweather', serif; letter-spacing: .02em; }
.nav-sub { font-size: 8.5px; color: #8fc05a; letter-spacing: .08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0; }

.nav-pages {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(192, 221, 151, 0.3);
  margin: 0 10px;
}

.nav-sections {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-section-link {
  padding: 7px 11px; color: #c8e0a0; font-size: 13px; font-weight: 500;
  border-radius: 7px; border: 1px solid transparent;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.nav-section-link:hover { background: rgba(255,255,255,.1); color: #fff; }

.nav-link {
  padding: 7px 11px; color: #c8e0a0; font-size: 13px; font-weight: 500;
  border-radius: 7px; border: 1px solid transparent;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }

.nav-active {
  background: var(--green-main) !important;
  color: #fff !important;
  border: 1px solid #5a9030 !important;
}

.nav-cta {
  padding: 8px 16px; background: var(--green-main); color: #fff;
  font-size: 13px; font-weight: 600; border-radius: 8px;
  border: 1px solid #5a9030; margin-left: 6px;
  transition: background var(--t);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-hover); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-hamburger span { width: 22px; height: 2px; background: #c8e0a0; border-radius: 2px; display: block; }

.nav-mobile {
  display: none; flex-direction: column;
  background: #122808; padding: .5rem 1.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile.open { display: flex; }

.nav-mobile-pages {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.nav-mobile-pages a {
  color: #c8e0a0; font-size: 14px; padding: 12px 4px; font-weight: 500;
}

.nav-mobile-pages a:hover { color: #fff; }

.nav-mobile-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile-sections a {
  color: #c8e0a0; font-size: 14px; padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.06); font-weight: 500;
}

.nav-mobile-sections a:last-child { border-bottom: none; }

.nav-mobile-sections a:hover { color: #fff; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative; min-height: 600px;
  display: flex; align-items: flex-end; padding-bottom: 5rem;
  overflow: hidden; margin-top: 64px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(5,18,2,.95) 0%, rgba(10,28,4,.9) 35%,
    rgba(15,38,6,.65) 58%, rgba(18,45,7,.1) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto; padding: 0 2rem; width: 100%;
}
.hero-eyebrow { font-size: 11px; font-weight: 600; color: #88cc44; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .65rem; }
.hero-title {
  font-family: 'Merriweather', serif; font-size: 66px; font-weight: 900;
  color: #fff; line-height: 1.02; margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.hero-accent { color: #7dd830; display: block; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,.88); line-height: 1.7; max-width: 500px; margin-bottom: 2.2rem; }
.hero-desc strong { color: #fff; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 5px 14px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7dd830;
  box-shadow: 0 0 0 3px rgba(125,216,48,.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(125,216,48,.25); }
  50% { box-shadow: 0 0 0 6px rgba(125,216,48,.08); }
}
.hero-scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px; z-index: 1;
}
.hero-scroll-hint span {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.35);
  border-radius: 12px; display: block; position: relative;
}
.hero-scroll-hint span::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px; background: rgba(255,255,255,.6);
  border-radius: 2px; animation: scroll-mouse 1.8s ease-in-out infinite;
}
@keyframes scroll-mouse { 0%,100%{opacity:1;top:6px} 50%{opacity:.3;top:16px} }

/* ===========================
   BOTÕES
=========================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--green-main); color: #fff;
  font-size: 15px; font-weight: 700; border-radius: 10px;
  box-shadow: var(--shadow-green);
  transition: background var(--t), transform .15s, box-shadow var(--t);
}
.btn-primary:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,109,17,.5); }
.btn-primary:active { transform: scale(.97); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-large { padding: 17px 36px; font-size: 17px; border-radius: 12px; }

.btn-pulse { animation: btn-pulse 3s ease-in-out infinite; }
@keyframes btn-pulse {
  0%,100% { box-shadow: var(--shadow-green); }
  50% { box-shadow: 0 0 0 8px rgba(59,109,17,.15), var(--shadow-green); }
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; background: transparent; color: #fff;
  font-size: 15px; font-weight: 500; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: background var(--t), border-color var(--t);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }

.btn-secondary-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; background: transparent; color: #fff;
  font-size: 15px; font-weight: 500; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: background var(--t);
}
.btn-secondary-light:hover { background: rgba(255,255,255,.1); }

/* ===========================
   SEÇÕES GENÉRICAS
=========================== */
.section-white { background: var(--white); }
.section-gray  { background: var(--gray-bg); }

.section-inner { max-width: 1240px; margin: 0 auto; padding: 5rem 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green-main);
  background: var(--green-pale); border: 1px solid rgba(59,109,17,.2);
  border-radius: 20px; padding: 4px 14px; margin-bottom: .75rem;
}
.section-title { font-family: 'Merriweather', serif; font-size: 32px; font-weight: 900; color: var(--text-dark); margin-bottom: .65rem; }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ===========================
   PASSO A PASSO
=========================== */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem;
}

.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  /* reveal */
  opacity: 0; transform: translateY(32px);
}
.step-card.visible { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease, box-shadow var(--t); }
.step-card.visible:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(59,109,17,.3); }

.step-number {
  font-family: 'Merriweather', serif; font-size: 42px; font-weight: 900;
  color: rgba(59,109,17,.12); line-height: 1; margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.step-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-main);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 14px rgba(59,109,17,.35);
}
.step-icon-wrap svg { width: 26px; height: 26px; }

.step-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; font-family: 'Merriweather', serif; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: .85rem; }

.step-link { font-size: 13px; font-weight: 600; color: var(--green-main); border-bottom: 1px solid transparent; transition: border-color var(--t); }
.step-link:hover { border-color: var(--green-main); }

.steps-divider {
  text-align: center; margin: 3.5rem 0 2.5rem;
  position: relative;
}
.steps-divider::before {
  content: '';
  display: block; height: 1px; background: var(--border);
  margin-bottom: 1.5rem;
}
.steps-divider h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text-dark);
  font-family: 'Merriweather', serif;
  letter-spacing: -.01em;
}

.cta-center { text-align: center; }

/* ===========================
   ALERTA DE SEGURANÇA
=========================== */
.section-alerta {
  background: #2d0a08 url("../imagens/fundos/fundo-grades.png") center/cover no-repeat;
  padding: 3rem 0;
}

.alerta-card {
  max-width: 1000px; margin: 0 auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: 18px; padding: 2.5rem 3rem;
  display: flex; gap: 2rem; align-items: flex-start;
  opacity: 0; transform: translateY(24px);
}
.alerta-card.visible { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease; }

.alerta-icon-wrap {
  width: 60px; height: 60px; flex-shrink: 0;
  background: rgba(255,180,160,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffbba0;
}
.alerta-icon-wrap svg { width: 30px; height: 30px; }

.alerta-body { flex: 1; }
.alerta-body h2 { font-family: 'Merriweather', serif; font-size: 24px; color: #ffcbb8; margin-bottom: .5rem; }
.alerta-lead { font-size: 15px; color: rgba(255,220,200,.8); margin-bottom: 1.5rem; line-height: 1.65; }

.alerta-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.alerta-col { border-radius: 10px; padding: 1.25rem 1.5rem; }
.alerta-danger { background: rgba(180,40,20,.2); border: 1px solid rgba(200,60,40,.3); }
.alerta-safe   { background: rgba(30,100,40,.2); border: 1px solid rgba(50,130,60,.3); }

.alerta-col-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.alerta-danger .alerta-col-title { color: #ff9080; }
.alerta-safe .alerta-col-title   { color: #80d090; }

.alerta-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.alerta-col ul li { font-size: 13.5px; line-height: 1.55; padding-left: 1rem; position: relative; }
.alerta-col ul li::before { content: '›'; position: absolute; left: 0; opacity: .6; }
.alerta-danger ul li { color: rgba(255,210,200,.85); }
.alerta-safe ul li   { color: rgba(200,240,210,.85); }

code {
  background: rgba(255,255,255,.15); border-radius: 4px;
  padding: 1px 6px; font-size: 12px; color: #b0e8b0; font-family: monospace;
}

/* ===========================
   ALISTAMENTO FEMININO
=========================== */
.feminino-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;
}

.feminino-info { display: flex; flex-direction: column; gap: 1.25rem; }

.info-block {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: linear-gradient(180deg, #fbfdf7 0%, #eef4dd 100%);
  border: 1px solid rgba(14, 70, 17, 0.521);
  border-radius: var(--radius); padding: 1.6rem;
  box-shadow: 0 16px 34px rgba(41, 86, 25, .08);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  opacity: 0; transform: translateX(-24px);
}
.info-block.visible { opacity: 1; transform: translateX(0); transition: opacity .5s ease, transform .5s ease, box-shadow var(--t); }
.info-block.visible:hover { box-shadow: 0 20px 42px rgba(41, 86, 25, .14); transform: translateX(4px); border-color: rgba(59,109,17,.22); }

.info-block-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: rgba(59,109,17,.08); border: 1px solid rgba(59,109,17,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-dark);
}
.info-block-icon svg { width: 22px; height: 22px; }

.info-block h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: .35rem; }
.info-block p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.info-block strong { color: var(--text-dark); }

.feminino-cta-box {
  position: relative;
  min-height: 470px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(12, 34, 12, .22);
  background:
    linear-gradient(180deg, rgba(215, 248, 184, 0.781) 0%, rgba(116, 138, 103, 0.541) 40%, rgba(143, 240, 219, 0.849) 100%),
    url("../imagens/fundos/mulher-militar.png") center/cover no-repeat;
  background-blend-mode: overlay;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(24px);
}
.feminino-cta-box.visible { opacity: 1; transform: translateY(0); transition: opacity .55s .1s ease, transform .55s .1s ease; }
.feminino-cta-box:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(34, 12, 12, 0.28); }
.feminino-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 5, 0, 0.719) 0%, rgba(1, 46, 11, 0.356) 48%, rgba(46, 65, 26, 0.384) 100%);
  pointer-events: none;
}

.feminino-cta-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  text-align: left;
}
.feminino-cta-icon-wrap {
  width: 70px; height: 70px; background: rgba(255,255,255,.16);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 0 1.25rem; color: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.18);
}
.feminino-cta-icon-wrap svg { width: 34px; height: 34px; }
.feminino-cta-inner h3 { font-family: 'Merriweather', serif; font-size: 24px; color: #fff; margin-bottom: .85rem; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.feminino-cta-inner p  { font-size: 15px; color: rgba(255,255,255,.9); line-height: 1.8; margin-bottom: 1.75rem; }
.feminino-note { font-size: 12px !important; color: rgba(255,255,255,.65) !important; margin-top: .9rem !important; margin-bottom: 0 !important; }

/* ===========================
   CONSEQUÊNCIAS
=========================== */
.section-consequencias {
  background: linear-gradient(135deg, #0d1f06 0%, #1a3a0a 50%, #122808 100%);
  padding: 5rem 0;
}

.section-header-light { text-align: center; margin-bottom: 3.5rem; }
.section-label-light {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 4px 14px; margin-bottom: .75rem;
}
.section-title-light { font-family: 'Merriweather', serif; font-size: 32px; font-weight: 900; color: #fff; margin-bottom: .65rem; }
.section-sub-light { font-size: 16px; color: rgba(255,255,255,.6); max-width: 540px; margin: 0 auto; }

.consequencias-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.consequencia-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.75rem;
  transition: background var(--t), transform var(--t);
  opacity: 0; transform: translateY(28px);
}
.consequencia-card.visible { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease, background var(--t); }
.consequencia-card.visible:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }

.consequencia-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,100,80,.15); border: 1px solid rgba(255,100,80,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: #ff9080;
}
.consequencia-icon svg { width: 24px; height: 24px; }

.consequencia-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.consequencia-card p  { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.7; }

.consequencia-solucao {
  background: rgba(59,109,17,.2) !important;
  border-color: rgba(100,180,50,.3) !important;
}
.consequencia-solucao.visible:hover { background: rgba(59,109,17,.3) !important; }

.consequencia-icon-ok {
  background: rgba(59,109,17,.3) !important;
  border-color: rgba(100,180,50,.4) !important;
  color: #7dd830 !important;
}

.consequencia-solucao h3 { color: #c0f060; }
.consequencia-solucao p  { color: rgba(255,255,255,.75); margin-bottom: 1.25rem; }

/* ===========================
   CTA FINAL
=========================== */
.section-cta {
  background: linear-gradient(135deg, #1a3a0a 0%, #2a5410 60%, #1e4a0c 100%);
  padding: 5.5rem 2rem; text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-badge-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,255,255,.55); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: 20px;
  padding: 4px 14px; margin-bottom: 1.25rem; text-transform: uppercase;
}
.cta-inner h2 { font-family: 'Merriweather', serif; font-size: 38px; font-weight: 900; color: #fff; margin-bottom: .85rem; }
.cta-inner p  { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 2rem; }

.cta-url-display {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 10px 22px; font-size: 16px; font-weight: 700;
  color: #a0e060; margin-bottom: 2.25rem; letter-spacing: .01em;
}

.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note { margin-top: 1.5rem; font-size: 12.5px; color: rgba(255,255,255,.4); }

/* ===========================
   FOOTER
=========================== */
.footer { background: #080f04; padding: 1.5rem 2rem; }
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 0;
}
.footer-pages { display: flex; align-items: center; gap: 0; }
.footer-page-link {
  padding: 0 10px; color: #c8e0a0; font-size: 13px; font-weight: 500;
  text-decoration: none; transition: color var(--t);
  white-space: nowrap;
}
.footer-page-link:hover { color: #fff; }
.footer-divider {
  width: 1px; height: 20px; background: rgba(192, 221, 151, 0.3);
  margin: 0 15px;
}
.footer-right { display: flex; align-items: center; gap: 8px; }
.footer-brand { display: block; font-size: 13px; font-weight: 700; color: #d8ecc0; letter-spacing: .04em; }
.footer-sub   { display: block; font-size: 9px; color: #4a6a28; letter-spacing: .07em; }
.footer-copy  { font-size: 12px; color: #4a6028; }
.footer-copy a { color: #6a9038; border-bottom: 1px solid transparent; }
.footer-copy a:hover { border-color: #6a9038; }

.footer-socials { display: flex; align-items: center; gap: 16px; }
.footer-socials a { display: block; }
.social-icon { width: 18px; height: 18px; object-fit: contain; filter: invert(40%) sepia(20%) saturate(500%) hue-rotate(75deg); transition: filter var(--t); }
.footer-socials a:hover .social-icon { filter: brightness(0) invert(1); }

/* ===========================
   CTA FIXO MOBILE
=========================== */
.cta-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  padding: 12px 16px 16px;
  background: linear-gradient(to top, rgba(10,28,5,.98) 70%, transparent);
}
.cta-sticky-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 15px;
  background: var(--green-main); color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: 12px; box-shadow: 0 4px 20px rgba(59,109,17,.5);
  transition: background var(--t);
}
.cta-sticky-btn:hover { background: var(--green-hover); }

/* ===========================
   RESPONSIVO — ≤1100px
=========================== */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .consequencias-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   RESPONSIVO — ≤900px
=========================== */
@media (max-width: 900px) {
  .hero-title { font-size: 50px; }
  .feminino-grid { grid-template-columns: 1fr; }
  .feminino-cta-box { max-width: 480px; }
  .alerta-card { flex-direction: column; padding: 2rem; }
  .alerta-cols { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .section-title-light { font-size: 26px; }
}

/* ===========================
   RESPONSIVO — ≤700px
=========================== */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 500px; padding-bottom: 5.5rem; }
  .hero-title { font-size: 40px; }
  .hero-desc { font-size: 15px; }
  .hero-desc br { display: none; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .cta-sticky { display: block; }
  .section-inner { padding: 3.5rem 1.25rem; }
  .section-cta { padding: 3.5rem 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .consequencias-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-secondary-light { width: 100%; justify-content: center; }
}

/* ===========================
   RESPONSIVO — ≤480px
=========================== */
@media (max-width: 480px) {
  .nav-inner { padding: 0 1rem; height: 58px; }
  .hero { margin-top: 58px; min-height: 430px; }
  .nav-title { font-size: 13px; }
  .nav-sub { display: none; }
  .nav-logo img { width: 36px; height: 36px; }
  .hero-title { font-size: 32px; }
  .hero-eyebrow { font-size: 10px; }
  .section-title { font-size: 22px; }
  .section-title-light { font-size: 22px; }
  .cta-inner h2 { font-size: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: .6rem; }
}