:root {
  --bg: #f3f7fb;
  --card: #ffffff;
  --blue: #2f6f9f;
  --blue-2: #6fa8c8;
  --green: #6f927b;
  --amber: #c6a66a;
  --ink: #07111f;
  --text: #111827;
  --muted: #526174;
  --line: rgba(15, 23, 42, .12);
  --soft-line: rgba(56, 189, 248, .20);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0 !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: Inter, Arial, sans-serif !important;
}

.if-site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 7%, rgba(18,108,255,.14), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(22,163,74,.10), transparent 30%),
    radial-gradient(circle at 70% 54%, rgba(245,158,11,.09), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #edf5fb 46%, #f8fafc 100%);
}

.if-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.if-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  background: transparent;
  border: 0;
}

.if-nav {
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 10px 7px 12px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(15,23,42,.14);
}

.if-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.if-logo-shell {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
}

.if-logo-shell:before,
.if-logo-shell:after {
  display: none;
}

.if-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  filter: none;
}

.if-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #030712;
  color: var(--blue-2);
  font-weight: 900;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.if-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.if-menu a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  padding: 11px 12px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.if-menu a:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.if-menu a:hover {
  color: var(--ink);
  background: rgba(18,108,255,.08);
}

.if-menu a:hover:after {
  opacity: 1;
  transform: scaleX(1);
}

.if-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  box-shadow: 0 18px 40px rgba(15,23,42,.22);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.if-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.24) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: ifButtonShine 5s ease-in-out infinite;
}

.if-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(15,23,42,.25);
}

.if-btn svg {
  position: relative;
  z-index: 1;
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.if-btn span {
  position: relative;
  z-index: 1;
}

.if-btn.secondary {
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  color: var(--text) !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.if-hero {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 112px;
  padding: 104px 0 64px;
}

.if-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(18,108,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black 0%, transparent 92%);
  pointer-events: none;
  animation: ifGridMove 18s linear infinite;
}

.if-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(243,247,251,.96));
  pointer-events: none;
}

.if-hero .if-wrap {
  position: relative;
  z-index: 2;
}

.if-hero-grid {
  display: grid;
  grid-template-columns: .95fr .86fr;
  gap: 44px;
  align-items: center;
}

.if-kicker {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.if-hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.04;
  color: var(--text);
}

.if-hero h1 span {
  color: #1f6f8b;
  background: linear-gradient(100deg, #1f6f8b 0%, #5f8f7a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: none;
}

.if-lead {
  margin: 22px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.58;
}

.if-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.if-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15,23,42,.07);
}

.if-hero-proof span:nth-child(2) { color: var(--green); }
.if-hero-proof span:nth-child(3) { color: var(--blue); }
.if-hero-proof span:nth-child(4) { color: #b45309; }

.if-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}


.if-flow {
  position: relative;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(15,23,42,.10);
  animation: ifPanelFloat 9s ease-in-out infinite;
}

.if-flow:before {
  content: "";
  position: absolute;
  top: 88px;
  bottom: 98px;
  left: 44px;
  width: 3px;
  border-radius: 999px;
  background: rgba(47,111,159,.14);
  box-shadow: 0 0 14px rgba(47,111,159,.10);
}

.if-flow:after {
  content: "";
  position: absolute;
  top: 88px;
  left: 44px;
  width: 3px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent 0%, #6fa8c8 34%, #ffffff 50%, #6f927b 66%, transparent 100%);
  box-shadow: 0 0 16px rgba(111,168,200,.36), 0 0 28px rgba(111,146,123,.16);
  animation: ifFlowLine 3.8s linear infinite;
}

.if-flow-title {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.if-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px 0;
}

.if-flow-dot {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.86), transparent 48%),
    #eff6ff;
  border: 1px solid rgba(18,108,255,.28);
  color: var(--blue);
  font-weight: 900;
  z-index: 2;
  box-shadow:
    inset 0 0 18px rgba(18,108,255,.08),
    0 0 0 1px rgba(18,108,255,.08),
    0 0 18px rgba(18,108,255,.14);
  animation: ifPulse 3.8s ease-in-out infinite;
}

.if-flow-step:nth-child(3) .if-flow-dot { animation-delay: .55s; }
.if-flow-step:nth-child(4) .if-flow-dot { animation-delay: 1.1s; }
.if-flow-step:nth-child(5) .if-flow-dot { animation-delay: 1.65s; }
.if-flow-step:nth-child(6) .if-flow-dot { animation-delay: 2.2s; }
.if-flow-step:nth-child(7) .if-flow-dot { animation-delay: 2.75s; }

.if-flow-copy strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 4px;
}

.if-flow-copy span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.42;
}

.if-flow-badge {
  position: relative;
  z-index: 6;
  margin-top: 16px;
  border: 1px solid rgba(111,146,123,.22);
  background: #f7f4ea;
  border-radius: 13px;
  padding: 14px 15px;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

@keyframes ifGridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 54px 54px, 54px 54px; }
}

@keyframes ifLogoOrbit {
  to { transform: rotate(360deg); }
}

@keyframes ifLogoScan {
  0%, 35% { transform: translateX(-135%); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: translateX(135%); opacity: 0; }
}

@keyframes ifButtonShine {
  0%, 55% { transform: translateX(-120%); }
  72%, 100% { transform: translateX(120%); }
}

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

@keyframes ifSectionFocus {
  0% {
    box-shadow:
      inset 0 0 0 1px rgba(56,189,248,.36),
      inset 0 0 150px rgba(18,108,255,.22);
  }
  64% {
    box-shadow:
      inset 0 0 0 1px rgba(56,189,248,.16),
      inset 0 0 88px rgba(18,108,255,.10);
  }
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(56,189,248,0),
      inset 0 0 0 rgba(18,108,255,0);
  }
}

@keyframes ifFlowLine {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateY(340px); opacity: 0; }
}

@keyframes ifSolutionTrack {
  0% { left: 40px; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 132px); opacity: 0; }
}

@keyframes ifPulse {
  0%, 100% {
    box-shadow:
      inset 0 0 18px rgba(56,189,248,.14),
      0 0 0 0 rgba(56,189,248,.0),
      0 0 18px rgba(18,108,255,.26);
    border-color: rgba(56,189,248,.48);
  }
  45%, 55% {
    box-shadow:
      inset 0 0 22px rgba(56,189,248,.24),
      0 0 0 9px rgba(56,189,248,.13),
      0 0 30px rgba(56,189,248,.58);
    border-color: rgba(255,255,255,.82);
  }
}

.if-section {
  scroll-margin-top: 112px;
  padding: 78px 0;
  border-top: 1px solid rgba(15,23,42,.08);
}

.if-hero:target,
.if-section:target {
  animation: ifSectionFocus 4s ease-out both;
}

.if-section h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--text);
}

.if-section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.if-section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.if-grid-3 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

#solucoes .if-grid-3 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-top: 34px;
  overflow: hidden;
}

#solucoes .if-grid-3:before {
  content: "";
  position: absolute;
  top: 77px;
  left: 40px;
  right: 102px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47,111,159,.14), rgba(111,146,123,.12), rgba(198,166,106,.14));
  box-shadow: 0 0 12px rgba(47,111,159,.08);
}

#solucoes .if-grid-3:after {
  content: "";
  position: absolute;
  top: 77px;
  left: 40px;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, #6fa8c8 34%, #ffffff 50%, #8fa58f 66%, transparent 100%);
  box-shadow: 0 0 14px rgba(111,168,200,.30), 0 0 24px rgba(111,146,123,.14);
  animation: ifSolutionTrack 5.2s linear infinite;
}

.if-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.if-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 26px;
  min-height: 218px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

#solucoes .if-card {
  min-height: 248px;
  padding: 22px 18px;
}

.if-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18,108,255,.24);
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 48px rgba(15,23,42,.12);
}

.if-icon {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.92), transparent 48%),
    #eff6ff;
  border: 1px solid rgba(18,108,255,.22);
  color: var(--blue);
  margin-bottom: 18px;
  font-weight: 900;
  box-shadow:
    inset 0 0 18px rgba(18,108,255,.08),
    0 0 0 1px rgba(18,108,255,.08),
    0 0 18px rgba(18,108,255,.13);
  animation: ifPulse 3.8s ease-in-out infinite;
}

.if-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--text);
}

.if-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 15px;
}


#como-trabalhamos .if-grid-2 {
  display: block;
}

#como-trabalhamos .if-grid-2 > div:first-child {
  max-width: 850px;
}

#como-trabalhamos h2 {
  max-width: 760px;
}

#como-trabalhamos p {
  max-width: 780px;
}

#como-trabalhamos .if-steps {
  margin-top: 46px;
}

.if-steps {
  counter-reset: step;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 18px;
  padding-top: 38px;
  overflow: visible;
}

.if-steps:before {
  content: "";
  position: absolute;
  top: 26px;
  left: 38px;
  right: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47,111,159,.16), rgba(111,146,123,.13));
  box-shadow: 0 0 10px rgba(47,111,159,.06);
}

.if-steps:after {
  content: "";
  position: absolute;
  top: 26px;
  left: 38px;
  width: 96px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(47,111,159,.72) 45%, rgba(120,148,126,.58) 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(111,168,200,.24);
  animation: ifWorkLine 4.8s linear infinite;
}

.if-step {
  counter-increment: step;
  position: relative;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 46px 22px 22px;
  min-height: 178px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.if-step:before {
  content: counter(step);
  position: absolute;
  top: -31px;
  left: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eff6ff;
  border: 1px solid rgba(18,108,255,.24);
  color: var(--blue);
  font-weight: 900;
  font-size: 17px;
  box-shadow:
    inset 0 0 18px rgba(18,108,255,.08),
    0 0 0 1px rgba(18,108,255,.08),
    0 0 18px rgba(18,108,255,.13);
  z-index: 2;
}


.if-step h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
}

.if-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.if-step:hover {
  transform: translateY(-4px);
  border-color: rgba(22,163,74,.22);
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 48px rgba(15,23,42,.12);
}

.if-ssw {
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(18,108,255,.08), rgba(22,163,74,.08));
}

.if-ssw-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.if-ssw-avatar-shell {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(56,189,248,.26),
    0 0 24px rgba(18,108,255,.28),
    0 0 48px rgba(56,189,248,.12);
  flex: 0 0 auto;
}

.if-ssw-avatar-shell:before {
  content: "";
  position: absolute;
  inset: -20px;
  background: conic-gradient(from 0deg, transparent 0 18%, rgba(0,102,255,.95) 26%, #38bdf8 32%, #fff 36%, rgba(18,108,255,.9) 41%, transparent 52% 100%);
  animation: ifLogoOrbit 2.6s linear infinite;
}

.if-ssw-avatar-shell:after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 0%, rgba(56,189,248,.28) 44%, rgba(255,255,255,.38) 50%, transparent 70%);
  mix-blend-mode: screen;
  transform: translateX(-135%);
  animation: ifLogoScan 2.9s ease-in-out infinite;
}

.if-ssw-avatar {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  border: 1px solid rgba(56,189,248,.35);
  box-shadow: 0 16px 38px rgba(18,108,255,.18);
  position: relative;
  z-index: 1;
}

.if-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.if-list li {
  color: var(--muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}

.if-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .55em;
}

.if-contact {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 24px;
  align-items: stretch;
}

.if-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.if-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.if-footer-info {
  display: grid;
  gap: 6px;
}

.if-footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.if-footer-email:hover { color: var(--text); }

.if-footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}

.if-footer-contact:hover {
  color: var(--text);
}

.if-footer-contact svg,
.if-footer-email svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex: 0 0 auto;
}

.if-footer-contact .if-mini-whatsapp {
  color: var(--green);
  margin-left: 2px;
}

.if-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.if-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  color: var(--blue);
  text-decoration: none;
  transition: .2s ease;
}

.if-social a:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2f6f9f, #6f927b);
  transform: translateY(-2px);
}

.if-social svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

@media (max-width: 860px) {
  .if-nav {
    height: auto;
    padding: 8px 10px;
    align-items: center;
  }

  .if-menu { display: none; }
  .if-brand span:last-child { font-size: 16px; }
  .if-hero { padding: 86px 0 48px; }

  .if-hero-grid,
  .if-grid-3,
  .if-contact {
    grid-template-columns: 1fr;
  }

  .if-grid-3 {
    gap: 18px;
  }

  #solucoes .if-grid-3 {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 34px 4px 6px;
    scroll-snap-type: x mandatory;
  }

  #solucoes .if-card {
    min-width: 230px;
    min-height: 230px;
    scroll-snap-align: start;
  }

  #solucoes .if-card:after {
    display: none;
  }

  #solucoes .if-card:before {
    display: none;
  }

  .if-grid-2 {
    grid-template-columns: 1fr;
  }

  .if-steps {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 34px 4px 6px;
    scroll-snap-type: x mandatory;
  }

  .if-step {
    min-width: 230px;
    scroll-snap-align: start;
  }

  .if-flow { padding: 22px; }

  .if-flow:before,
  .if-flow:after {
    left: 42px;
  }

  .if-footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes ifWorkLine {
  0% { left: 38px; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 157px); opacity: 0; }
}

@media (max-width: 640px) {
  .if-ssw-head { align-items: flex-start; }

  .if-ssw-avatar {
    width: 60px;
    height: 60px;
  }

  .if-ssw-avatar-shell {
    width: 66px;
    height: 66px;
  }
}

/* Logo limpa no cabeçalho: sem LED, sem brilho e sem camadas antigas. */
.if-brand .if-logo-shell {
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.if-brand .if-logo-shell::before,
.if-brand .if-logo-shell::after {
  content: none !important;
  display: none !important;
  animation: none !important;
  background: none !important;
  box-shadow: none !important;
}

.if-brand .if-logo {
  filter: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

