/*
################################
#### Color - Aguiar Tendas   ####
#### Azul Petróleo + Verde CTA ##
################################
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* iOS 26 — SF Pro system font (native on Apple, Helvetica Neue elsewhere) */
:root {
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-text:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

:root {

  /* === CORES PRIMÁRIAS (Azul Teal) === */
  --primary400:    #2090B0;
  --primary500:    #1890B4;
  --primary600:    #007890;

  /* === CORES SECUNDÁRIAS (Verde CTA) === */
  --secundary400:  #33D98A;
  --secundary500:  #00B460;
  --secundary600:  #008040;

  /* === CORES TERCIÁRIAS (Azul Marinho) === */
  --tertiary400:   #246CD8;
  --tertiary500:   #1860CC;
  --tertiary600:   #103060;

  /* === ESCALA NEUTRA === */
  --dark100:       #FFFFFF;
  --dark200:       #F8FAFB;
  --dark300:       #EEF4F8;
  --dark400:       #B0D0F0;
  --dark500:       #607080;
  --dark600:       #506070;
  --dark700:       #384858;
  --dark800:       #0C243C;
  --dark900:       #070F1A;

  /* === ALERTAS === */
  --alert-r500:    #EF4444;
  --alert-r100:    #FEE2E2;
  --alert-y500:    #F59E0B;
  --alert-y100:    #FEF3C7;
  --alert-g500:    #00B460;
  --alert-g100:    #DCFCE7;

  /* === VARIÁVEIS EXTRAS AGUIAR === */
  --aguiar-teal:        #1890B4;
  --aguiar-teal-dark:   #007890;
  --aguiar-navy:        #0C243C;
  --aguiar-navy-mid:    #103060;
  --aguiar-green:       #00B460;
  --aguiar-bg:          #F0F0F0;
  --aguiar-surface:     #D8F0FC;
  --aguiar-card:        #CCE4FC;
  --aguiar-border:      #B0D0F0;

}


/* === TIPOGRAFIA AGUIAR === */

body,
p, a, li, span, div,
.body1, .body2, .subtitle1, .subtitle2,
.caption-text, .overline-text, .button-text, .button-text-regular {
  font-family: var(--font-text) !important;
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6,
.header1, .header2, .header3, .header4, .header5, .header6,
.hero1 {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1;
}

/* Subtítulos — peso médio Apple */
h3, h4, .header3, .header4, .subtitle1 {
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

/* Labels e botões — peso semibold Apple */
.button-text, .button-text-regular,
button, a.button, input[type="submit"] {
  font-family: var(--font-text) !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em;
}


/* === FUNDO GERAL === */

body {
  background-color: #F0F0F0 !important;
}

/* Seções com fundo branco → fundo levemente acinzentado (mais premium) */
section[style*="background: linear-gradient(180deg, #FFFFFF"] {
  background: linear-gradient(180deg, #F4F8FC 50%, #E8F0F8 80%, #DCE8F4 100%) !important;
}


/* === NAVBAR === */

nav.header-dark {
  background-color: rgba(12, 36, 60, 0.97) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24, 144, 180, 0.25);
}

/* Nav tagline */
.nav-tagline {
  color: #B0D0F0 !important;
  opacity: 1 !important;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Menu items */
nav .navbar-nav li a {
  color: #E8F4FC !important;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav .navbar-nav li a:hover {
  color: #1890B4 !important;
}


/* === BOTÕES === */

/* === CTA BUTTONS — Verde Aguiar (todos os botões de ação) === */
.btn-primary500,
.btn-alert-g500,
.btn-secundary500 {
  background-color: var(--aguiar-green) !important;
  border-color: var(--aguiar-green) !important;
  color: #FFFFFF !important;
  font-family: var(--font-text) !important;
  font-weight: 600 !important;
  border-radius: 980px !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
  box-shadow: 0 4px 14px rgba(0, 180, 96, 0.35) !important;
  transition: all 0.2s ease !important;
}
.btn-primary500:hover,
.btn-alert-g500:hover,
.btn-secundary500:hover {
  background-color: var(--secundary600) !important;
  border-color: var(--secundary600) !important;
  box-shadow: 0 6px 24px rgba(0, 180, 96, 0.55) !important;
  transform: translateY(-2px);
}

/* Outline branca — Liquid Glass (iOS 26 secondary) */
.btn-dark100-outline {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 980px !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}
.btn-dark100-outline:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  color: #FFFFFF !important;
}

/* Text links CTA */
.btn-primary500-text,
.btn-color-text {
  color: var(--aguiar-green) !important;
  font-weight: 600 !important;
}
.btn-primary500-text:hover,
.btn-color-text:hover {
  color: var(--secundary600) !important;
}

/* Outline escura (pill) */
.btn-dark500-outline {
  border-color: var(--aguiar-green) !important;
  color: var(--aguiar-green) !important;
  border-radius: 980px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.btn-dark500-outline:hover {
  background: var(--aguiar-green) !important;
  color: #FFFFFF !important;
}

/* Outline primária (pill) */
.btn-primary500-outline {
  border-color: var(--aguiar-green) !important;
  color: var(--aguiar-green) !important;
  border-radius: 980px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.btn-primary500-outline:hover {
  background: var(--aguiar-green) !important;
  color: #FFFFFF !important;
}


/* === HERO / SLIDESHOW === */

.slideshow-image-overlay {
  background: linear-gradient(
    145deg,
    rgba(5, 14, 26, 0.90) 0%,
    rgba(7, 20, 38, 0.82) 50%,
    rgba(5, 14, 26, 0.88) 100%
  ) !important;
}

/* Hero headline — SF Pro Display style */
.slideshow-size-screen h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
  line-height: 1.08 !important;
}

/* Destaque amarelo → teal */
.secundary500-txt {
  color: var(--aguiar-teal) !important;
}
.secundary500-bgd {
  background-color: var(--aguiar-teal) !important;
}
.secundary500-brd {
  border-color: var(--aguiar-teal) !important;
}


/* === PRODUCTS GRID === */

#products-grid-dark {
  background: linear-gradient(180deg, #0C243C 0%, #103060 60%, #0A1E30 100%) !important;
}

.products-grid-border {
  border: 1px solid rgba(24, 144, 180, 0.3) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 80px rgba(12, 36, 60, 0.4) !important;
}

.products-grid-item {
  background: rgba(24, 144, 180, 0.07) !important;
  border-right: 1px solid rgba(24, 144, 180, 0.15) !important;
  border-bottom: 1px solid rgba(24, 144, 180, 0.15) !important;
  transition: background 0.25s ease, border-color 0.25s ease !important;
}
.products-grid-item:hover {
  background: rgba(24, 144, 180, 0.18) !important;
  border-color: rgba(24, 144, 180, 0.5) !important;
}

.products-grid-item h2 {
  color: #E8F4FC !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
}


/* === SOLUTIONS SECTION === */

.solutions-card {
  background: linear-gradient(135deg, #0C243C 0%, #103060 100%) !important;
  border: 1px solid rgba(24, 144, 180, 0.2) !important;
  transition: border-color 0.25s, transform 0.25s !important;
}
.solutions-card:hover {
  border-color: rgba(24, 144, 180, 0.6) !important;
  transform: translateY(-4px) !important;
}

.solutions-lens-overlay {
  background: linear-gradient(
    135deg,
    rgba(24, 144, 180, 0.12) 0%,
    transparent 60%
  ) !important;
}

/* Solutions sem imagens de cobertura — usa gradient navy com variação */
#s-item-1 .solutions-card { background: linear-gradient(145deg, #103060 0%, #1860CC 100%) !important; }
#s-item-2 .solutions-card { background: linear-gradient(145deg, #0C243C 0%, #1890B4 100%) !important; }
#s-item-3 .solutions-card { background: linear-gradient(145deg, #0A1E30 0%, #007890 100%) !important; }
#s-item-4 .solutions-card { background: linear-gradient(145deg, #103060 0%, #246CD8 100%) !important; }


/* === INFOBANNER === */

/* InfoBanner (parallax) */
.infobanner-section .secundary500-bgd,
section .secundary500-bgd {
  background: linear-gradient(135deg, #1890B4 0%, #007890 100%) !important;
}


/* === HIGHLIGHTS (ícones rodapé seção) === */

.icon-ft-highlight h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
}


/* === INFOVIDEO === */

.infovideo-cover {
  background: linear-gradient(135deg, #0C243C 0%, #103060 100%) !important;
}
.infovideo-cover-lens-overlay {
  background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(24,144,180,0.2) 0%, transparent 70%) !important;
}


/* === CONTACT FORM === */

.dark100-bgd {
  background-color: #FFFFFF !important;
}

.input-bg {
  background-color: #EEF4F8 !important;
  border: 1px solid rgba(24, 144, 180, 0.22) !important;
  border-radius: 14px !important;
  color: #202020 !important;
  font-family: var(--font-text) !important;
  font-size: 16px !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
}
.input-bg:focus {
  border-color: #1890B4 !important;
  box-shadow: 0 0 0 4px rgba(24, 144, 180, 0.12) !important;
  background-color: #FFFFFF !important;
  outline: none !important;
}

/* Form header */
section .header2.primary500-txt {
  color: var(--aguiar-teal) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
}

/* Consent link */
.consent-link {
  color: var(--aguiar-teal) !important;
}


/* === BLOG === */

.blog-tag {
  color: var(--aguiar-teal) !important;
  background: rgba(24, 144, 180, 0.1) !important;
  border-radius: 4px !important;
  padding: 2px 8px !important;
}

.blog-img-cover {
  border-radius: 12px !important;
  overflow: hidden !important;
}


/* === FOOTER === */

footer .dark800-bgd {
  background: linear-gradient(180deg, #0C243C 0%, #07111E 100%) !important;
}

footer .dark700-bgd {
  background-color: #07111E !important;
  border-top: 1px solid rgba(24, 144, 180, 0.2) !important;
}

.footer-menu p.button-text {
  color: #1890B4 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.footer-menu a {
  color: #B0D0F0 !important;
  transition: color 0.2s !important;
}
.footer-menu a:hover {
  color: #FFFFFF !important;
}

/* Social buttons */
#instagram, #facebook, #linkedin {
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}
#instagram:hover, #facebook:hover, #linkedin:hover {
  opacity: 1;
}


/* === POPUP / MODALS === */

.white-popup-block {
  background-color: #FFFFFF !important;
  border-radius: 16px !important;
}


/* === FLOATING WHATSAPP === */

.float-wpp {
  filter: drop-shadow(0 4px 20px rgba(0, 180, 96, 0.5));
}


/* === SCROLL & GENERAL POLISH === */

/* Smooth gradient em separadores de seção */
.circle-bottom-white { opacity: 0.4 !important; filter: hue-rotate(200deg) !important; }

/* Border radius improvements */
.border-radius-16 { border-radius: 16px !important; }
.border-radius-18 { border-radius: 18px !important; }

/* Primary color utilities */
.primary400-txt    { color: var(--primary400); }
.primary500-txt    { color: var(--primary500); }
.primary600-txt    { color: var(--primary600); }
.primary400-brd    { border-color: var(--primary400) !important; }
.primary500-brd    { border-color: var(--primary500) !important; }
.primary400-bgd    { background-color: var(--primary400); }
.primary500-bgd    { background-color: var(--primary500); }
.primary600-bgd    { background-color: var(--primary600); }


/* === BADGES EXTRAS === */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}


/* === STATS HERO === */

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1890B4;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}


/* === PRODUCTS SECTION SPACING === */

.products-section-spacing {
  background: linear-gradient(180deg, #0A1E30 0%, #0C243C 40%, #F0F0F0 100%) !important;
  height: 80px !important;
}


/* === SCROLL REVEAL ANIMATION === */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rv.vis {
  opacity: 1;
  transform: none;
}


/* ===== PRODUCTS GRID — ÍCONES AGUIAR TENDAS ===== */
/* Substitui os ícones yellow (Tendas Brasil) pelos green com filtro teal */

#products-grid-dark .products-grid-item .products-grid-icon.carpa            { background-image: url(../images/icon-prod-grn-carpa.svg);          }
#products-grid-dark .products-grid-item .products-grid-icon.piramidal        { background-image: url(../images/icon-prod-grn-piramidal.svg);      }
#products-grid-dark .products-grid-item .products-grid-icon.sanfonada        { background-image: url(../images/icon-prod-grn-sanfonada.svg);      }
#products-grid-dark .products-grid-item .products-grid-icon.calhada          { background-image: url(../images/icon-prod-grn-calhada.svg);        }
#products-grid-dark .products-grid-item .products-grid-icon.chapeu-bruxa     { background-image: url(../images/icon-prod-grn-piramidal.svg);      }
#products-grid-dark .products-grid-item .products-grid-icon.gradil           { background-image: url(../images/icon-prod-grn-calhada.svg);        }

/* Filtro: desloca o verde dos SVGs para o teal da Aguiar (hue-rotate 170deg + saturate) */
#products-grid-dark .products-grid-item:hover .products-grid-icon {
  filter: grayscale(0) hue-rotate(158deg) saturate(1.4) brightness(1.15) !important;
  opacity: 1.0 !important;
}
#products-grid-dark .products-grid-item .products-grid-icon {
  filter: grayscale(1.0) opacity(0.5) !important;
}


/* ===== SOLUTIONS SECTION — gradientes distintos por card ===== */
/* Sem imagens de cover externas; cada card tem gradiente azul único */
.solutions-card { background-size: cover !important; background-position: center !important; }


/* ===== FOOTER — address text ===== */
footer address, footer .address-text {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 0.85rem !important;
  line-height: 1.8 !important;
  color: #B0D0F0 !important;
  font-style: normal !important;
}


/* ===== FAQ ITEMS ===== */
.faq-item:hover {
  border-color: #1890B4 !important;
  box-shadow: 0 4px 16px rgba(24,144,180,0.1);
}
.faq-toggle:focus { outline: none !important; }


/* ===== CTA SECTION ===== */
.cta-dark-section {
  background: linear-gradient(135deg, #0C243C 0%, #103060 50%, #0A1E30 100%) !important;
}


/* ===== MOBILE RESPONSIVO ===== */
@media (max-width: 768px) {
  .hero-stats-container { gap: 20px !important; }
  .hero-stat-num { font-size: 1.8rem !important; }
  .logo-text-main { font-size: 1.2rem !important; }
  .logo-text-sub { display: none; }
}


/* ===== PRINT SAFE — evita flash de conteúdo invisível ===== */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1 !important; transform: none !important; }
  .rv.vis { opacity: 1 !important; }
}


/* ===================================================================
   STACKED PRODUCT CARDS — sticky stacking (estilo Mercado Pago)
   Cards em fluxo normal; cada um position:sticky com top escalonado.
   O próximo card cobre o anterior, que fica espiando atrás.
   JS aplica apenas a escala de profundidade no card coberto.
   =================================================================== */

#products-stacked-section {
  position: relative !important;
  margin-top: -140px !important;
  z-index: 9 !important;
  background: #0B2240 !important;
  padding: 170px 0 90px !important;
  overflow: visible !important;
  width: 100% !important;
}

/* ── Cabeçalho ── */
.stacked-header {
  position: relative;
  z-index: 20;
  padding: 0 24px 28px;
  flex-shrink: 0;
}

.stacked-scroll-hint {
  color: rgba(176, 208, 240, 0.5);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 4px !important;
}

.stacked-scroll-arrow {
  display: inline-block;
  animation: stacked-bounce 1.8s ease infinite;
}

@keyframes stacked-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Deck: cards em fluxo normal; cada um é sticky no topo.
   O próximo card sobe por cima; o anterior fica "espiando" atrás
   com a borda superior visível (top escalonado) — estilo Mercado Pago. ── */
.stacked-deck {
  position: relative;
  width: 88vw;
  max-width: 1080px;
  margin: 0 auto;
}

.stack-deck-card {
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 56vh;
  min-height: 360px;
  margin-bottom: 30px;
  padding: 52px 56px 44px;
  text-align: center;
  background: linear-gradient(155deg, #0E2E52 0%, #103060 55%, #0C244A 100%);
  border: 1px solid rgba(24, 144, 180, 0.22);
  border-radius: 28px;
  box-shadow:
    0 -12px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform-origin: center top;
  will-change: transform;
}

/* Top escalonado: cada card gruda 16px abaixo do anterior,
   deixando a borda do anterior espiando atrás */
.stacked-deck .stack-deck-card:nth-child(1) { top: 104px; }
.stacked-deck .stack-deck-card:nth-child(2) { top: 120px; }
.stacked-deck .stack-deck-card:nth-child(3) { top: 136px; }
.stacked-deck .stack-deck-card:nth-child(4) { top: 152px; }
.stacked-deck .stack-deck-card:nth-child(5) { top: 168px; }
.stacked-deck .stack-deck-card:nth-child(6) { top: 184px; }

/* Estados removidos — JS aplica transform/opacity/zIndex direto via style.
   Isso garante animação 1:1 com scroll, sem lag de CSS transitions.     */

/* ── Badge "Mais Vendida" ── */
.stack-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00B833 0%, #009E16 100%);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 158, 22, 0.45);
}

/* ── Ícone ── */
.stack-card-icon {
  display: block;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto 26px;
  filter: grayscale(0.3) opacity(0.78);
  transition: filter 0.35s ease, transform 0.35s ease;
}

/* Hover/tap: ícone fica branco puro */
.stack-deck-card:hover .stack-card-icon,
.stack-deck-card:active .stack-card-icon {
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}

/* Card Piramidal (mais vendida): contorno verde de destaque */
.stack-deck-card[data-card="0"] {
  border: 2px solid rgba(0, 200, 60, 0.75);
  box-shadow:
    0 -12px 32px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(0, 190, 60, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.stack-card-icon.piramidal    { background-image: url(../images/icon-stack-piramidal.svg); }
.stack-card-icon.carpa        { background-image: url(../images/icon-stack-carpa.svg); }
.stack-card-icon.sanfonada    { background-image: url(../images/icon-stack-sanfonada.svg); }
.stack-card-icon.calhada      { background-image: url(../images/icon-stack-calhada.svg); }
.stack-card-icon.chapeu-bruxa { background-image: url(../images/icon-stack-bruxa.svg); }
.stack-card-icon.gradil       { background-image: url(../images/icon-prod-grn-gradil.svg); }

/* ── Título ── */
.stack-card-title {
  color: #E8F4FC !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 3.6rem !important;
  line-height: 1.05 !important;
  margin: 0 0 30px !important;
  letter-spacing: -0.01em !important;
}

/* ── Gradient de saída para a próxima seção ── */
.stacked-section-spacer {
  background: linear-gradient(180deg, #0B2240 0%, #0C243C 30%, #F0F4F8 100%) !important;
  height: 80px !important;
  padding: 0 !important;
}

/* ===================================================================
   NAV DESKTOP — página atual destacada (texto e ícone azuis),
   mesmo azul do estado ativo do nav-pill mobile
   =================================================================== */
nav .navbar-nav li.active a,
nav .navbar-nav li.active a div {
  color: #1890B4 !important;
}

nav .navbar-nav li.active a img {
  filter: invert(55%) sepia(60%) saturate(500%) hue-rotate(170deg) brightness(1.1) !important;
  opacity: 1 !important;
}
