/* ═══════════════════════════════════════════════════
   CARTILHA DE EXTENSÃO — PPGMSB/UNEB
   Cores institucionais: verde PPGMSB + azul UNEB
   Mobile-first · 2026
═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Cores PPGMSB */
  --verde-escuro: #0d5c36;
  --verde: #1a7a4a;
  --verde-medio: #22a05e;
  --verde-claro: #d4eddf;
  --verde-suave: #edf7f1;

  /* Azul UNEB */
  --azul-escuro: #003366;
  --azul: #00498f;
  --azul-claro: #d6e4f7;
  --azul-suave: #eef4fc;

  /* Teal (acento) */
  --teal: #0e7c7b;
  --teal-claro: #d4eeed;

  /* Laranja (alertas) */
  --laranja: #e07b00;
  --laranja-claro: #fff3e0;

  /* Neutros */
  --cinza-bg: #f2f5f8;
  --cinza-borda: #dce4ed;
  --cinza-card: #f8fafc;
  --branco: #ffffff;
  --texto: #1a2535;
  --texto-sec: #475569;
  --texto-ter: #7a8ba0;

  /* Sombras */
  --shadow-sm: 0 1px 4px rgba(0, 51, 102, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 51, 102, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 51, 102, 0.12);

  /* Layout */
  --sidebar-w: 268px;
  --topbar-h: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* Tipografia */
  --font-body: "Inter", sans-serif;
  --font-serif: "Lora", serif;
  --font-mono: "JetBrains Mono", monospace;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--cinza-bg);
  color: var(--texto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
#header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

/* NAVBAR */
#header .navbar {
    padding: 6px 16px; /* controla altura geral */
}

/* CONTAINER FLEX */
#header .container-fluid {
    display: flex;
    align-items: center; /* ALINHAMENTO VERTICAL */
}

/* LOGO */
.logo-image {
    display: flex;
    align-items: center;
    height: 40px; /* mesma referência das flags */
}

.logo-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* FLAGS */
.lang-flags {
    display: flex;
    align-items: center;
    height: 40px; /* igual ao logo */
}

.lang-flags .flag-icon {
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lang-flags .flag-icon:hover {
    transform: scale(1.1);
}

/* ══════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════ */
.main {
  margin-top: var(--topbar-h);
  min-height: calc(100vh - var(--topbar-h));
}


/* ══════════════════════════════════════
   HERO — dark + green blob
══════════════════════════════════════ */
.hero {
  background: #0f1117;
  padding: 48px 20px 44px;
  position: relative;
  overflow: hidden;
}

/* blob verde orgânico no canto direito */
.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    to left,
    #1db954 0%,
    #0e7040 30%,
    #0a5c35 55%,
    transparent 100%
  );
  clip-path: ellipse(110% 120% at 100% 50%);
  pointer-events: none;
  z-index: 0;
}

/* círculos antigos desativados */
.hero-bg-circles { display: none; }

.hero-content { position: relative; z-index: 1; }

/* ── pílula ── */
.hero-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* ── título ── */
.hero-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  color: #1db954;
  text-decoration: underline;
  text-decoration-color: rgba(29, 185, 84, 0.35);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* ── subtítulo ── */
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 480px;
}

/* ── chips / botões ── */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.hero-btn:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.18);
}

.hero-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #1db954;
}

/* ── CTA ── */
.hero-cta {
  display: inline-block;
  background: #1db954;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.hero-cta:hover {
  background: #17a349;
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
 .sec-fundamento {
    padding: 60px 0;
    background: #fff;
    font-family: 'DM Sans', sans-serif;
  }
 
  .sec-fundamento .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 14px;
  }
  .sec-fundamento .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #1a8c58;
    border-radius: 2px;
    flex-shrink: 0;
  }
 
  .sec-fundamento .sec-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 600;
    color: #131f19;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .sec-fundamento .sec-title em {
    font-style: italic;
    color: #1a8c58;
  }
 
  .sec-fundamento .sec-lead {
    font-size: .92rem;
    color: #607060;
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 0;
  }
 
  /* bloco destaque */
  .fund-destaque {
    background: #f4f1eb;
    border: 1px solid #dde8e2;
    border-left: 3px solid #1a8c58;
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin-top: 32px;
  }
  .fund-destaque-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 12px;
  }
  .fund-destaque p {
    font-size: .9rem;
    color: #607060;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .fund-destaque p:last-child { margin-bottom: 0; }
  .fund-destaque strong { color: #131f19; font-weight: 600; }

/* cliclo */
  .sec-extensao {
    padding: 64px 0 52px;
    background: #f4f1eb;
    font-family: 'DM Sans', sans-serif;
  }
 
  .sec-extensao .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 14px;
  }
  .sec-extensao .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #1a8c58;
    border-radius: 2px;
    flex-shrink: 0;
  }
 
  .sec-extensao .sec-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    font-weight: 600;
    color: #131f19;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .sec-extensao .sec-title em {
    font-style: italic;
    color: #1a8c58;
  }
 
  .sec-extensao .sec-lead {
    font-size: .93rem;
    color: #607060;
    line-height: 1.75;
    max-width: 440px;
  }
 
  /* bloco texto + imagem */
  .ext-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 32px;
  }
 
  .ext-texto {
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
  }
 
  .ext-desc {
    font-size: .9rem;
    color: #607060;
    line-height: 1.8;
  }
  .ext-desc strong { color: #131f19; font-weight: 600; }
 
  .pill-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .pill-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .82rem;
    color: #131f19;
    line-height: 1.4;
  }
  .pill-dot {
    width: 6px; height: 6px;
    background: #1a8c58;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
  }
 
  .ext-footer-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .73rem;
    font-weight: 500;
    color: #0d5c3a;
    background: #e6f4ee;
    border: 1px solid #b8dece;
    border-radius: 100px;
    padding: 5px 14px;
    width: fit-content;
  }
 
  .ext-imagem {
    position: relative;
    min-height: 320px;
    overflow: hidden;
  }
  .ext-imagem img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.9);
  }
  .ext-imagem::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,.18) 0%, transparent 40%);
  }
  .img-caption {
    position: absolute;
    bottom: 14px; left: 14px; right: 14px;
    z-index: 2;
    background: rgba(13,31,25,.72);
    backdrop-filter: blur(6px);
    border-radius: 7px;
    padding: 9px 13px;
    font-size: .73rem;
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    gap: 8px;
  }
 
  /* cards território */
  .sec-cards {
    padding: 52px 0 64px;
    background:  #fff;
    font-family: 'DM Sans', sans-serif;
  }
  .sec-cards .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 14px;
  }
  
  .sec-cards .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #1a8c58;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .sec-cards .sec-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    font-weight: 600;
    color: #131f19;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .sec-cards .sec-title em {
    font-style: italic;
    color: #1a8c58;
  }
 
  .sec-cards .sec-lead {
    font-size: .93rem;
    color: #607060;
    line-height: 1.75;
    max-width: 440px;
  }
 

  .tc {
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 10px;
    padding: 22px 20px 20px;
    height: 100%;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    position: relative;
  }
  .tc:hover {
    box-shadow: 0 8px 28px rgba(13,92,58,.1);
    transform: translateY(-3px);
    border-color: rgba(26,140,88,.25);
  }
 
  .tc-bar {
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 2px;
    border-radius: 0 0 2px 2px;
  }
  .tc.c-soc .tc-bar { background: #1a8c58; }
  .tc.c-env .tc-bar { background: #2da349; }
  .tc.c-sci .tc-bar { background: #2460b5; }
  .tc.c-eco .tc-bar { background: #c8952a; }
  .tc.c-cul .tc-bar { background: #8b3fad; }
  .tc.c-inn .tc-bar { background: #c0392b; }
 
  .tc-ico {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .tc.c-soc .tc-ico { background: #e5f5ee; color: #0d5c3a; }
  .tc.c-env .tc-ico { background: #e2f4e4; color: #2da349; }
  .tc.c-sci .tc-ico { background: #e0ebf9; color: #2460b5; }
  .tc.c-eco .tc-ico { background: #faefd8; color: #9a6e14; }
  .tc.c-cul .tc-ico { background: #f0e5f7; color: #8b3fad; }
  .tc.c-inn .tc-ico { background: #fae5e3; color: #c0392b; }
 
  .tc-badge {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #607060;
    margin-bottom: 6px;
    display: block;
  }
  .tc h6 {
    font-family: 'Lora', Georgia, serif;
    font-size: .92rem;
    font-weight: 600;
    color: #131f19;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .tc p {
    font-size: .8rem;
    color: #607060;
    line-height: 1.65;
    margin: 0;
  }
 
  @media (max-width: 767px) {
    .ext-body { grid-template-columns: 1fr; }
    .ext-imagem { min-height: 200px; }
    .ext-texto { padding: 28px 24px; }
  }

  /* equipe */
    .sec-equipe {
    padding: 60px 0;
    background: #ffff;
    font-family: 'DM Sans', sans-serif;
  }
 
  /* eyebrow reutilizado */
  .sec-equipe .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 14px;
  }
  .sec-equipe .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #1a8c58;
    border-radius: 2px;
    flex-shrink: 0;
  }
 
  .sec-equipe .sec-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 600;
    color: #131f19;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .sec-equipe .sec-title em {
    font-style: italic;
    color: #1a8c58;
  }
 
  .sec-equipe .sec-lead {
    font-size: .92rem;
    color: #607060;
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 0;
  }
 
  /* ── Parágrafo descritivo ──────────────────────── */
  .eq-intro {
    background: #fff;
    border: 1px solid #dde8e2;
    border-left: 3px solid #1a8c58;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    font-size: .88rem;
    color: #607060;
    line-height: 1.8;
    margin-top: 32px;
    margin-bottom: 36px;
  }
  .eq-intro strong { color: #131f19; font-weight: 600; }
 
  /* ── Cards dos três perfis ─────────────────────── */
  .eq-card {
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 10px;
    padding: 28px 24px 24px;
    height: 100%;
    position: relative;
    transition: box-shadow .2s, transform .2s;
  }
  .eq-card:hover {
    box-shadow: 0 8px 28px rgba(13,92,58,.1);
    transform: translateY(-3px);
  }
 
  /* numeração grande decorativa */
  .eq-num {
    position: absolute;
    top: 16px; right: 20px;
    font-family: 'Lora', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #e8f4ee;
    line-height: 1;
    user-select: none;
  }
 
  .eq-ico {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  .eq-card.perfil-doc  .eq-ico { background: #e5f5ee; color: #0d5c3a; }
  .eq-card.perfil-disc .eq-ico { background: #e0ebf9; color: #2460b5; }
  .eq-card.perfil-grad .eq-ico { background: #faefd8; color: #9a6e14; }
 
  /* barra superior */
  .eq-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 2px;
    border-radius: 0 0 2px 2px;
  }
  .eq-card.perfil-doc::before  { background: #1a8c58; }
  .eq-card.perfil-disc::before { background: #2460b5; }
  .eq-card.perfil-grad::before { background: #c8952a; }
 
  .eq-card .eq-role {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #607060;
    margin-bottom: 6px;
    display: block;
  }
  .eq-card h5 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: #131f19;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .eq-card p {
    font-size: .82rem;
    color: #607060;
    line-height: 1.7;
    margin-bottom: 14px;
  }
 
  /* tag de responsabilidade */
  .eq-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
  }
  .perfil-doc  .eq-tag { background: #e5f5ee; color: #0d5c3a; }
  .perfil-disc .eq-tag { background: #e0ebf9; color: #2460b5; }
  .perfil-grad .eq-tag { background: #faefd8; color: #9a6e14; }
 
  /* ── Linha de composição mínima ────────────────── */
  .eq-composicao {
    background: #131f19;
    border-radius: 10px;
    padding: 28px 32px;
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }
  .eq-comp-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 4px;
  }
  .eq-comp-title {
    font-family: 'Lora', Georgia, serif;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
  }
  .eq-comp-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.12);
    margin: 0 32px;
  }
  .eq-comp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 160px;
  }
  .eq-comp-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .eq-comp-item:nth-child(3) .eq-comp-dot { background: #5ecb98; }
  .eq-comp-item:nth-child(5) .eq-comp-dot { background: #6ca3e8; }
  .eq-comp-item:nth-child(7) .eq-comp-dot { background: #e8b94a; }
 
  .eq-comp-text {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    line-height: 1.4;
  }
  .eq-comp-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
  }
 
  @media (max-width: 767px) {
    .eq-composicao { flex-direction: column; align-items: flex-start; gap: 16px; }
    .eq-comp-divider { display: none; }
  }

  /* metodologia */

    .sec-ciclo {
    padding: 60px 0;
    background: #f4f1eb;
    font-family: 'DM Sans', sans-serif;
  }
 
  .sec-ciclo .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 14px;
  }
  .sec-ciclo .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #1a8c58;
    border-radius: 2px;
    flex-shrink: 0;
  }
 
  .sec-ciclo .sec-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 600;
    color: #131f19;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .sec-ciclo .sec-title em {
    font-style: italic;
    color: #1a8c58;
  }
 
  .sec-ciclo .sec-lead {
    font-size: .92rem;
    color: #607060;
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 0;
  }
 
  /* ── Bloco de abertura: imagem + intro ─────────── */
  .ciclo-abertura {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 32px;
    margin-bottom: 40px;
  }
 
  .ciclo-abertura-img {
    position: relative;
    min-height: 260px;
    overflow: hidden;
  }
  .ciclo-abertura-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(.9);
  }
  .ciclo-abertura-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(255,255,255,.15) 100%);
  }
 
  .ciclo-abertura-texto {
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
 
  .ciclo-abertura-texto p {
    font-size: .88rem;
    color: #607060;
    line-height: 1.8;
    margin: 0;
  }
  .ciclo-abertura-texto p strong { color: #131f19; font-weight: 600; }
 
  /* lista de princípios no bloco de abertura */
  .ciclo-principios {
    display: flex;
    flex-direction: column;
    gap: 7px;
    list-style: none;
    padding: 0; margin: 0;
  }
  .ciclo-principios li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .8rem;
    color: #607060;
    line-height: 1.4;
  }
  .ciclo-principios li i {
    color: #1a8c58;
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  /* ── Fases detalhadas ──────────────────────────── */
  .ciclo-fases-titulo {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #607060;
    margin-bottom: 20px;
  }
 
  .fase-card {
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 10px;
    padding: 24px 22px 22px;
    height: 100%;
    position: relative;
    transition: box-shadow .2s, transform .2s;
  }
  .fase-card:hover {
    box-shadow: 0 8px 28px rgba(13,92,58,.1);
    transform: translateY(-3px);
  }
 
  /* barra superior colorida */
  .fase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 2px;
    border-radius: 0 0 2px 2px;
  }
  .fase-card.f1::before { background: #1a8c58; }
  .fase-card.f2::before { background: #2460b5; }
  .fase-card.f3::before { background: #8b3fad; }
  .fase-card.f4::before { background: #c8952a; }
 
  /* número grande decorativo */
  .fase-num {
    position: absolute;
    top: 12px; right: 18px;
    font-family: 'Lora', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    user-select: none;
    opacity: .07;
    color: #131f19;
  }
 
  /* ícone */
  .fase-ico {
    width: 40px; height: 40px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  .fase-card.f1 .fase-ico { background: #e5f5ee; color: #0d5c3a; }
  .fase-card.f2 .fase-ico { background: #e0ebf9; color: #2460b5; }
  .fase-card.f3 .fase-ico { background: #f0e5f7; color: #8b3fad; }
  .fase-card.f4 .fase-ico { background: #faefd8; color: #9a6e14; }
 
  .fase-badge {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #607060;
    display: block;
    margin-bottom: 6px;
  }
 
  .fase-card h5 {
    font-family: 'Lora', Georgia, serif;
    font-size: .97rem;
    font-weight: 600;
    color: #131f19;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .fase-card p {
    font-size: .8rem;
    color: #607060;
    line-height: 1.7;
    margin-bottom: 14px;
  }
 
  /* bullets */
  .fase-bullets {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .fase-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .75rem;
    color: #607060;
    line-height: 1.45;
  }
  .fase-bullets li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
  }
  .fase-card.f1 .fase-bullets li::before { background: #1a8c58; }
  .fase-card.f2 .fase-bullets li::before { background: #2460b5; }
  .fase-card.f3 .fase-bullets li::before { background: #8b3fad; }
  .fase-card.f4 .fase-bullets li::before { background: #c8952a; }
 
  /* ── Nota rodapé ───────────────────────────────── */
  .ciclo-loop {
    margin-top: 20px;
    background: #131f19;
    border-radius: 10px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .ciclo-loop i { font-size: 1.3rem; color: #5ecb98; flex-shrink: 0; }
  .ciclo-loop span { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.6; }
  .ciclo-loop strong { color: #fff; }
 
  @media (max-width: 767px) {
    .ciclo-abertura { grid-template-columns: 1fr; }
    .ciclo-abertura-img { min-height: 200px; }
    .ciclo-abertura-texto { padding: 24px 20px; }
  }

  /* areas temáticas */
  .sec-linhas {
    padding: 60px 0;
    background: #ffff;
    font-family: 'DM Sans', sans-serif;
  }
 
  .sec-linhas .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 14px;
  }
  .sec-linhas .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #1a8c58;
    border-radius: 2px;
    flex-shrink: 0;
  }
 
  .sec-linhas .sec-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 600;
    color: #131f19;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .sec-linhas .sec-title em { font-style: italic; color: #1a8c58; }
 
  .sec-linhas .sec-lead {
    font-size: .92rem;
    color: #607060;
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 0;
  }
 
  /* ── Barra de busca + filtros ─────────────────── */
  .linhas-toolbar {
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 32px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
 
  .linhas-search {
    position: relative;
    flex: 1;
    min-width: 200px;
  }
  .linhas-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ab0a0;
    font-size: .9rem;
    pointer-events: none;
  }
  .linhas-search input {
    width: 100%;
    border: 1px solid #dde8e2;
    border-radius: 8px;
    padding: 9px 12px 9px 36px;
    font-size: .85rem;
    font-family: 'DM Sans', sans-serif;
    color: #131f19;
    outline: none;
    transition: border-color .2s;
    background: #f9faf9;
  }
  .linhas-search input:focus { border-color: #1a8c58; background: #fff; }
  .linhas-search input::placeholder { color: #9ab0a0; }
 
  /* filtros por área */
  .linhas-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
  .filtro-btn {
    border: 1px solid #dde8e2;
    background: #f4f1eb;
    color: #607060;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
  }
  .filtro-btn:hover { border-color: #1a8c58; color: #1a8c58; }
  .filtro-btn.ativo {
    background: #1a8c58;
    border-color: #1a8c58;
    color: #fff;
  }
 
  /* contador de resultados */
  .linhas-count {
    font-size: .75rem;
    color: #9ab0a0;
    white-space: nowrap;
  }
  .linhas-count strong { color: #1a8c58; }
 
  /* ── Grid de cards ────────────────────────────── */
  .linhas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
 
  /* card */
  .linha-card {
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 9px;
    padding: 14px 14px 12px;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .linha-card:hover {
    box-shadow: 0 6px 20px rgba(13,92,58,.1);
    transform: translateY(-2px);
    border-color: rgba(26,140,88,.3);
  }
  .linha-card.selecionado {
    border-color: #1a8c58;
    background: #f0faf5;
  }
  .linha-card.selecionado::after {
    content: '\F26B'; /* bi-check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 8px; right: 10px;
    color: #1a8c58;
    font-size: .85rem;
  }
  .linha-card.oculto { display: none; }
 
  .card-num {
    font-size: .62rem;
    font-weight: 700;
    color: #9ab0a0;
    letter-spacing: .08em;
  }
  .card-nome {
    font-family: 'Lora', Georgia, serif;
    font-size: .82rem;
    font-weight: 600;
    color: #131f19;
    line-height: 1.3;
    flex: 1;
  }
  .card-area {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
    width: fit-content;
  }
 
  /* cores por área */
  .area-tecnologia  { background: #e0ebf9; color: #2460b5; }
  .area-saude       { background: #e5f5ee; color: #0d5c3a; }
  .area-ambiente    { background: #e2f4e4; color: #2a7a2a; }
  .area-educacao    { background: #faefd8; color: #9a6e14; }
  .area-cultura     { background: #f0e5f7; color: #8b3fad; }
  .area-social      { background: #fde8e8; color: #b01e1e; }
  .area-economia    { background: #fef3e2; color: #b05c00; }
  .area-gestao      { background: #e8eaf6; color: #3949ab; }
 
  /* sem resultados */
  .linhas-vazio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #9ab0a0;
    font-size: .88rem;
    display: none;
  }
  .linhas-vazio i { font-size: 2rem; display: block; margin-bottom: 10px; }
 
  /* ── Modal ────────────────────────────────────── */
  .modal-linhas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,31,25,.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
  }
  .modal-linhas-overlay.aberto {
    opacity: 1;
    pointer-events: all;
  }
 
  .modal-linhas {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(16px) scale(.98);
    transition: transform .25s;
    box-shadow: 0 24px 60px rgba(0,0,0,.2);
  }
  .modal-linhas-overlay.aberto .modal-linhas {
    transform: translateY(0) scale(1);
  }
 
  .modal-header {
    padding: 22px 24px 18px;
    border-bottom: 1px solid #eef2ef;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    background: #fff;
    border-radius: 12px 12px 0 0;
    z-index: 1;
  }
  .modal-header-info { flex: 1; }
  .modal-num-badge {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ab0a0;
    margin-bottom: 4px;
  }
  .modal-titulo {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #131f19;
    line-height: 1.3;
    margin: 0 0 8px;
  }
  .modal-fechar {
    background: #f4f1eb;
    border: none;
    border-radius: 8px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #607060;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background .15s;
  }
  .modal-fechar:hover { background: #dde8e2; }
 
  .modal-body {
    padding: 20px 24px 24px;
  }
  .modal-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9ab0a0;
    margin-bottom: 8px;
    display: block;
  }
  .modal-descricao {
    font-size: .86rem;
    color: #607060;
    line-height: 1.8;
    margin-bottom: 22px;
  }
 
 
 
  /* ── Responsive ───────────────────────────────── */
  @media (max-width: 991px) {
    .linhas-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 575px) {
    .linhas-grid { grid-template-columns: 1fr; }
    .linha-card {
      flex-direction: row;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
    }
    .card-nome { font-size: .85rem; }
    .card-area { display: none; }
    .card-num { min-width: 28px; }
  }

    .sec-publico {
    padding: 60px 0;
    background: #f4f1eb;
    font-family: 'DM Sans', sans-serif;
  }
 
  .sec-publico .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 14px;
  }
  .sec-publico .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #1a8c58;
    border-radius: 2px;
    flex-shrink: 0;
  }
 
  .sec-publico .sec-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 600;
    color: #131f19;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .sec-publico .sec-title em {
    font-style: italic;
    color: #1a8c58;
  }
 
  .sec-publico .sec-lead {
    font-size: .9rem;
    color: #607060;
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 0;
  }
 
  /* ── Cards de público ─────────────────────────── */
  .pub-card {
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 10px;
    padding: 20px 18px;
    height: 100%;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: box-shadow .2s, transform .2s, border-color .2s;
  }
  .pub-card:hover {
    box-shadow: 0 8px 28px rgba(13,92,58,.1);
    transform: translateY(-3px);
    border-color: rgba(26,140,88,.25);
  }
 
  .pub-ico {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: #e5f5ee;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: #0d5c3a;
    flex-shrink: 0;
  }
 
  .pub-texto { flex: 1; }
  .pub-num {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ab0a0;
    display: block;
    margin-bottom: 4px;
  }
  .pub-texto h6 {
    font-family: 'Lora', Georgia, serif;
    font-size: .88rem;
    font-weight: 600;
    color: #131f19;
    line-height: 1.35;
    margin-bottom: 5px;
  }
  .pub-texto p {
    font-size: .76rem;
    color: #607060;
    line-height: 1.6;
    margin: 0;
  }
 
  /* ── Nota obrigatoriedade ─────────────────────── */
  .pub-nota {
    margin-top: 24px;
    background: #f4f1eb;
    border: 1px solid #dde8e2;
    border-left: 3px solid #1a8c58;
    border-radius: 0 9px 9px 0;
    padding: 14px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .pub-nota i {
    color: #1a8c58;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .pub-nota span {
    font-size: .8rem;
    color: #607060;
    line-height: 1.65;
  }
  .pub-nota strong { color: #131f19; }

  /* documentos */
    .sec-formularios {
    padding: 60px 0;
    background: #f4f1eb;
    font-family: 'DM Sans', sans-serif;
  }
 
  .sec-formularios .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a8c58;
    margin-bottom: 14px;
  }
  .sec-formularios .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #1a8c58;
    border-radius: 2px;
    flex-shrink: 0;
  }
 
  .sec-formularios .sec-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 600;
    color: #131f19;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .sec-formularios .sec-title em {
    font-style: italic;
    color: #1a8c58;
  }
 
  .sec-formularios .sec-lead {
    font-size: .92rem;
    color: #607060;
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 0;
  }
 
  /* ── Nota de obrigatoriedade ───────────────────── */
  .form-nota {
    background: #fff;
    border: 1px solid #dde8e2;
    border-left: 3px solid #1a8c58;
    border-radius: 0 10px 10px 0;
    padding: 16px 22px;
    margin-top: 32px;
    margin-bottom: 28px;
    font-size: .85rem;
    color: #607060;
    line-height: 1.75;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .form-nota i { color: #1a8c58; font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
  .form-nota strong { color: #131f19; font-weight: 600; }
 
  /* ── Cards de documento ────────────────────────── */
  .doc-card {
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 10px;
    padding: 22px 20px 18px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s, transform .2s, border-color .2s;
  }
  .doc-card:hover {
    box-shadow: 0 8px 28px rgba(13,92,58,.1);
    transform: translateY(-3px);
    border-color: rgba(26,140,88,.25);
  }
 
  /* barra superior */
  .doc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: #1a8c58;
  }
 
  .doc-num {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ab0a0;
  }
 
  .doc-ico {
    width: 40px; height: 40px;
    border-radius: 9px;
    background: #e5f5ee;
    color: #0d5c3a;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
 
  .doc-card h5 {
    font-family: 'Lora', Georgia, serif;
    font-size: .95rem;
    font-weight: 600;
    color: #131f19;
    line-height: 1.3;
    margin: 0;
  }
 
  .doc-card p {
    font-size: .78rem;
    color: #607060;
    line-height: 1.7;
    margin: 0;
    flex: 1;
  }
 
  /* badge obrigatório */
  .doc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0d5c3a;
    background: #e5f5ee;
    border: 1px solid #b8dece;
    border-radius: 100px;
    padding: 3px 10px;
    width: fit-content;
  }
 
  /* botão download */
  .doc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    background: #fff;
    border: 1px solid #dde8e2;
    border-radius: 8px;
    padding: 9px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    color: #131f19;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s, border-color .18s, color .18s;
    margin-top: auto;
  }
  .doc-btn:hover {
    background: #1a8c58;
    border-color: #1a8c58;
    color: #fff;
  }
  .doc-btn i { font-size: .85rem; }
 
  /* ── Rodapé informativo ────────────────────────── */
  .form-rodape {
    margin-top: 28px;
    background: #131f19;
    border-radius: 10px;
    padding: 20px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .form-rodape-texto {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
  }
  .form-rodape-texto strong { color: #fff; }
  .form-rodape-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #1a8c58;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s;
    font-family: 'DM Sans', sans-serif;
  }
  .form-rodape-link:hover { background: #0d5c3a; color: #fff; }


  /* footer */
  .site-footer {
    background: #131f19;
    font-family: 'DM Sans', sans-serif;
    padding: 48px 0 0;
  }
 
  /* ── Topo do footer ───────────────────────────── */
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
 
  /* coluna identidade */
  .footer-brand p {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
    margin: 12px 0 20px;
    max-width: 280px;
  }
 
  .footer-logo-text {
    display: flex;
    flex-direction: column;
  }
  .footer-logo-sigla {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
  }
  .footer-logo-sub {
    font-size: .68rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 2px;
  }
 
  /* badge UNEB */
  .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    width: fit-content;
  }
  .footer-badge span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #5ecb98;
    flex-shrink: 0;
  }
 
  /* colunas de links */
  .footer-col h6 {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 14px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .footer-col ul li a {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .18s;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .footer-col ul li a:hover { color: #5ecb98; }
  .footer-col ul li a i { font-size: .75rem; opacity: .5; }
 
  /* ── Rodapé do footer ─────────────────────────── */
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
  }
 
  .footer-copy {
    font-size: .73rem;
    color: rgba(255,255,255,.25);
  }
  .footer-copy strong { color: rgba(255,255,255,.4); }
 
  .footer-resolucao {
    font-size: .7rem;
    color: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-resolucao::before {
    content: '';
    display: block;
    width: 16px; height: 1px;
    background: rgba(255,255,255,.15);
  }
 
  /* ── Responsive ───────────────────────────────── */
  @media (max-width: 767px) {
    .footer-top {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
  }

  /* fundo rodape */
  .form-rodape-contato {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.form-rodape-contato-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

.form-rodape-contato-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.form-rodape-contato-link.whatsapp {
    color: #25D366;
}

.form-rodape-contato-link.whatsapp i {
    color: #25D366;
    font-size: 1rem;
}

.form-rodape-contato-link.email {
    color: #e0e0e0;
}

.form-rodape-contato-link.email i {
    color: #4ea8f5;
    font-size: 1rem;
}

.form-rodape-contato-sep {
    color: #555;
    font-size: 0.85rem;
}