/* ========================================
   HOME / HERO / SERVIÇOS
======================================== */

/* HERO */
.hero--mock{
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px) 0 clamp(34px, 5vw, 64px);
  isolation: isolate;
}

.hero--mock::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 460px at 78% 24%, rgba(60,130,255,.10), transparent 62%),
    radial-gradient(760px 380px at 18% 12%, rgba(0,209,255,.04), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.hero--mock::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 220px at 18% 30%, rgba(0,209,255,.05), transparent 70%),
    radial-gradient(360px 200px at 82% 18%, rgba(80,130,255,.08), transparent 72%);
  mix-blend-mode: screen;
  opacity: .9;
  pointer-events: none;
  animation: heroGlowFloat 14s ease-in-out infinite alternate;
  z-index: -1;
}

.hero--mock .hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(960px 560px at 72% 24%, rgba(80,130,255,.16), transparent 60%),
    linear-gradient(90deg, rgba(3,10,25,.88) 0%, rgba(3,10,25,.62) 36%, rgba(3,10,25,.38) 58%, rgba(3,10,25,.72) 100%),
    url("../img/Manhattan.png") 68% center / cover no-repeat;
  transform: none;
  transform-origin: center center;
  filter: saturate(1.04) contrast(1.02);
  transition: background .4s ease, filter .4s ease;
  will-change: auto;
  z-index: -2;
}

@keyframes heroGlowFloat{
  0%{
    transform: translate3d(0, 0, 0);
    opacity: .75;
  }
  50%{
    transform: translate3d(10px, -8px, 0);
    opacity: .95;
  }
  100%{
    transform: translate3d(-8px, 10px, 0);
    opacity: .8;
  }
}

.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid{
  display: grid;
  grid-template-columns: minmax(480px, 620px) minmax(280px, 430px);
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  min-height: min(760px, calc(100vh - 140px));
  width: min(1240px, 100%);
  margin: 0 auto;
}

.hero-copy{
  max-width: 620px;
  padding-top: 0;
  padding-left: 0;
}

.hero-kicker{
  margin: 0 0 18px;
  font-size: .95rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(234,241,255,.82);
  font-weight: 700;
}

.hero-title{
  margin: 0 0 22px;
  max-width: 12.5ch;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 900;
  color: rgba(245,248,255,.98);
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.hero-title--typing{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-title-static{
  display: block;
}

.hero-title-dynamic{
  display: inline-flex;
  align-items: center;
  min-height: 1.2em;
  color: #8ed8ff;
  text-shadow: 0 0 18px rgba(0, 209, 255, 0.18);
}

#typed-text{
  display: inline-block;
}

.typed-cursor{
  display: inline-block;
  margin-left: 6px;
  color: #00d1ff;
  font-weight: 700;
  animation: blinkCursor .8s steps(1) infinite;
}

@keyframes blinkCursor{
  0%, 50%{
    opacity: 1;
  }
  50.01%, 100%{
    opacity: 0;
  }
}

.hero-lead{
  margin: 0 0 28px;
  max-width: 52ch;
  font-size: clamp(.98rem, 1vw, 1.04rem);
  line-height: 1.82;
  color: rgba(234,241,255,.82);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions--center{
  justify-content: flex-start;
}

/* BOTÃO WHATSAPP HERO */
.btn-whatsapp--hero{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 24px;
  border-radius: 18px;
  border: 1px solid rgba(120,255,150,.36);
  background:
    linear-gradient(180deg, rgba(62,255,120,.98) 0%, rgba(20,175,0,.96) 100%);
  color: #f7fbff;
  font-weight: 900;
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 14px 28px rgba(8,80,20,.28),
    0 0 22px rgba(62,255,120,.16);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    filter .22s ease;
}

.btn-whatsapp--hero::before{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0));
  pointer-events: none;
}

.btn-whatsapp--hero:hover{
  transform: translateY(-2px);
  border-color: rgba(160,255,180,.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 20px 34px rgba(8,80,20,.34),
    0 0 28px rgba(62,255,120,.24);
  filter: saturate(1.06) brightness(1.02);
}

.btn-whatsapp--hero:active{
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 10px 20px rgba(8,80,20,.24),
    0 0 18px rgba(62,255,120,.14);
}

.btn-whatsapp-icon{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,.98);
  flex-shrink: 0;
}

.btn-whatsapp-text{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}

/* HERO LOGO */
.hero-art{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 420px;
  width: 100%;
  overflow: visible;
}

.logo-glow{
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  transform: translate(10px, 18px);
}

.logo-glow::before{
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  right: 8%;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,140,255,.15) 0%, rgba(80,140,255,.07) 42%, rgba(80,140,255,0) 74%);
  filter: blur(28px);
  pointer-events: none;
}

.logo-glow::after{
  content: "";
  position: absolute;
  width: 64%;
  height: 64%;
  right: 12%;
  bottom: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,209,255,.07) 0%, rgba(0,209,255,0) 72%);
  filter: blur(20px);
  pointer-events: none;
}

.logo-glow .hero-logo{
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
  width: 100% !important;
  max-width: 520px !important;
  height: auto !important;
  object-fit: contain;
  object-position: center;
  display: block;
  filter:
    drop-shadow(0 16px 36px rgba(0,0,0,.36))
    drop-shadow(0 0 22px rgba(90,150,255,.10));
  transition: transform .24s ease, filter .24s ease, opacity .24s ease, visibility .24s ease;
}

.hero-logo--dark{
  opacity: 1;
  visibility: visible;
}

.hero-logo--light{
  opacity: 0;
  visibility: hidden;
}

:root[data-theme="light"] .hero-logo--dark{
  opacity: 0;
  visibility: hidden;
}

:root[data-theme="light"] .hero-logo--light{
  opacity: 1;
  visibility: visible;
}

.logo-glow:hover .hero-logo{
  transform: translateY(-2px) scale(1.02);
  filter:
    drop-shadow(0 18px 40px rgba(0,0,0,.40))
    drop-shadow(0 0 28px rgba(0,209,255,.14));
}

/* SERVIÇOS */
.home-services{
  position: relative;
  padding: clamp(42px, 7vw, 92px) 0 clamp(56px, 8vw, 110px);
  overflow: hidden;
}

.home-services::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 320px at 18% 8%, rgba(70,160,255,.12), transparent 62%),
    radial-gradient(780px 420px at 85% 22%, rgba(0,209,255,.08), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 0;
}

.home-services .container{
  position: relative;
  z-index: 1;
}

.home-services h2{
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text);
  text-wrap: balance;
}

.home-services-desc{
  width: min(880px, 100%);
  margin: 0 auto clamp(28px, 4vw, 42px);
  text-align: center;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.8;
  color: var(--muted);
  text-wrap: balance;
}

.services-carousel{
  position: relative;
}

.services-track{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.service-card{
  position: relative;
  min-height: 100%;
  padding: clamp(24px, 2.5vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20,39,74,.78) 0%, rgba(4,12,27,.94) 100%);
  border: 1px solid rgba(72,138,255,.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 18px 38px rgba(0,0,0,.34),
    0 0 0 1px rgba(0,153,255,.04);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 140px at 18% 10%, rgba(70,160,255,.18), transparent 62%),
    radial-gradient(260px 160px at 85% 0%, rgba(0,209,255,.08), transparent 70%);
  opacity: .95;
  z-index: -2;
  pointer-events: none;
}

.service-card::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  z-index: -1;
  pointer-events: none;
}

.service-card:hover{
  transform: translateY(-8px);
  border-color: rgba(85,170,255,.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 26px 52px rgba(0,0,0,.44),
    0 0 26px rgba(48,132,255,.16),
    0 0 0 1px rgba(90,170,255,.08);
}

.service-icon{
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(95,170,255,.36);
  background:
    linear-gradient(180deg, rgba(40,88,156,.30), rgba(14,30,66,.58));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 24px rgba(0,0,0,.22),
    0 0 0 1px rgba(0,153,255,.05);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

.service-icon::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(82,170,255,.30), rgba(0,209,255,.04) 55%, rgba(255,255,255,0));
  opacity: .9;
  z-index: 0;
  pointer-events: none;
}

.service-icon::after{
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 35%, rgba(114,196,255,.18), rgba(114,196,255,0) 70%);
  filter: blur(8px);
  opacity: .9;
  z-index: 0;
  pointer-events: none;
}

.service-card:hover .service-icon{
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(118,196,255,.62);
  background:
    linear-gradient(180deg, rgba(54,110,190,.36), rgba(16,36,76,.72));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 28px rgba(0,0,0,.28),
    0 0 24px rgba(0,180,255,.14),
    0 0 0 1px rgba(95,180,255,.10);
}

.service-icon-svg{
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  color: rgba(236,244,255,.95);
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.05))
    drop-shadow(0 0 10px rgba(72,155,255,.14));
}

.service-card h3{
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 900;
  color: rgba(240,246,255,.98);
  text-wrap: balance;
  max-width: 100%;
  word-break: break-word;
}

.service-card p{
  margin: 0;
  max-width: 100%;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.9;
  color: rgba(223,233,249,.76);
  word-break: break-word;
}

/* RESPONSIVO TABLET */
@media (max-width: 1180px){
  .hero-grid{
    grid-template-columns: 1fr;
    justify-content: initial;
    min-height: auto;
    text-align: center;
    gap: 28px;
    width: 100%;
  }

  .hero-copy{
    max-width: 860px;
    margin: 0 auto;
    padding-top: 0;
    padding-left: 0;
  }

  .hero-title{
    max-width: 13ch;
    margin-inline: auto;
    font-size: clamp(2.7rem, 7vw, 4.4rem);
  }

  .hero-title--typing{
    align-items: center;
  }

  .hero-lead{
    margin-inline: auto;
  }

  .hero-actions--center{
    justify-content: center;
  }

  .hero-art{
    justify-content: center;
    min-height: 300px;
  }

  .logo-glow{
    max-width: 300px;
    min-height: 140px;
    justify-content: center;
    transform: translate(0, 0);
  }

  .logo-glow .hero-logo{
    max-width: 300px !important;
  }

  .hero--mock .hero-bg{
    background:
      radial-gradient(960px 560px at 72% 24%, rgba(80,130,255,.16), transparent 60%),
      linear-gradient(90deg, rgba(3,10,25,.90) 0%, rgba(3,10,25,.70) 42%, rgba(3,10,25,.58) 100%),
      url("../img/Manhattan.png") 60% center / cover no-repeat;
  }
}

@media (max-width: 1100px){
  .services-track{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card p{
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 700px){
  .hero--mock{
    min-height: auto;
    padding: 22px 0 40px;
  }

  .hero-grid{
    min-height: auto;
    gap: 18px;
  }

  .hero-kicker{
    margin-bottom: 14px;
    font-size: .88rem;
  }

  .hero-title{
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    margin-bottom: 18px;
    line-height: .98;
  }

  .hero-title-dynamic{
    min-height: 2.4em;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-lead{
    font-size: .98rem;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .hero-actions--center{
    justify-content: center;
  }

  .btn-whatsapp--hero{
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-art{
    justify-content: center;
    min-height: 220px;
  }

  .logo-glow{
    max-width: 220px;
    min-height: 110px;
    justify-content: center;
    transform: translate(0, 0);
  }

  .logo-glow .hero-logo{
    max-width: 220px !important;
  }

  .hero--mock .hero-bg{
    background:
      radial-gradient(700px 420px at 70% 20%, rgba(80,130,255,.14), transparent 58%),
      linear-gradient(180deg, rgba(3,10,25,.78) 0%, rgba(3,10,25,.64) 34%, rgba(3,10,25,.80) 100%),
      url("../img/Manhattan.png") 58% center / cover no-repeat;
    filter: saturate(1.03) contrast(1.01);
  }

  .home-services{
    padding: 38px 0 62px;
  }

  .home-services h2{
    margin-bottom: 12px;
  }

  .home-services-desc{
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .services-track{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card{
    padding: 24px 22px 26px;
    border-radius: 24px;
    min-height: unset;
  }

  .service-card::after{
    border-radius: 23px;
  }

  .service-icon{
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .service-icon-svg{
    width: 28px;
    height: 28px;
  }

  .service-card h3{
    font-size: 1.55rem;
    line-height: 1.08;
    margin-bottom: 12px;
    max-width: 100%;
    word-break: break-word;
  }

  .service-card p{
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.72;
    word-break: break-word;
  }
}

/* TEMA CLARO HOME */
:root[data-theme="light"] .hero--mock .hero-bg{
  background:
    radial-gradient(900px 520px at 74% 26%, rgba(20,110,255,.10), transparent 58%),
    linear-gradient(90deg, rgba(246,248,255,.94) 0%, rgba(246,248,255,.76) 38%, rgba(246,248,255,.58) 62%, rgba(246,248,255,.88) 100%),
    url("../img/Manhattan.png") 68% center / cover no-repeat;
  filter: saturate(1.02) brightness(1.03);
}

:root[data-theme="light"] .hero-kicker{
  color: rgba(10,16,30,.72);
}

:root[data-theme="light"] .hero-title{
  color: rgba(8,16,30,.96);
  text-shadow: none;
}

:root[data-theme="light"] .hero-title-dynamic{
  color: rgba(20,110,255,.92);
  text-shadow: none;
}

:root[data-theme="light"] .typed-cursor{
  color: rgba(20,110,255,.95);
}

:root[data-theme="light"] .hero-lead{
  color: rgba(10,16,30,.72);
}

:root[data-theme="light"] .btn-whatsapp--hero{
  background:
    linear-gradient(180deg, rgba(62,255,120,.96), rgba(20,175,0,.94));
  color: #ffffff;
  border-color: rgba(20,175,0,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 10px 20px rgba(10,16,30,.08);
}

:root[data-theme="light"] .service-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(239,245,255,.92) 100%);
  border-color: rgba(20,110,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.80),
    0 18px 34px rgba(10,16,30,.08),
    0 0 0 1px rgba(20,110,255,.03);
}

:root[data-theme="light"] .service-card::before{
  background:
    radial-gradient(240px 140px at 18% 10%, rgba(20,110,255,.10), transparent 62%),
    radial-gradient(260px 160px at 85% 0%, rgba(0,180,255,.05), transparent 70%);
}

:root[data-theme="light"] .service-card:hover{
  border-color: rgba(20,110,255,.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 22px 42px rgba(10,16,30,.12),
    0 0 18px rgba(20,110,255,.08);
}

:root[data-theme="light"] .service-icon{
  background:
    linear-gradient(180deg, rgba(20,110,255,.10), rgba(20,110,255,.06));
  border-color: rgba(20,110,255,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 10px 22px rgba(10,16,30,.08);
}

:root[data-theme="light"] .service-card:hover .service-icon{
  border-color: rgba(20,110,255,.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 12px 24px rgba(10,16,30,.10),
    0 0 12px rgba(20,110,255,.06);
}

:root[data-theme="light"] .service-icon-svg{
  color: rgba(12,34,70,.92);
  filter: none;
}

:root[data-theme="light"] .service-card h3{
  color: rgba(10,16,30,.94);
}

:root[data-theme="light"] .service-card p{
  color: rgba(10,16,30,.72);
}

:root[data-theme="light"] .logo-glow .hero-logo{
  filter:
    drop-shadow(0 10px 22px rgba(10,16,30,.10));
}

/* ========================================
   FOOTER
======================================== */

.site-footer{
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 320px at 18% 0%, rgba(47,123,255,.08), transparent 62%),
    radial-gradient(780px 260px at 82% 8%, rgba(0,209,255,.05), transparent 68%),
    linear-gradient(180deg, #050b18 0%, #030814 100%);
}

.site-footer .container{
  width: min(var(--container), calc(100% - clamp(16px, 4vw, 40px)));
  margin: 0 auto;
}

.footer-inner{
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(140px, .7fr) minmax(260px, 1fr);
  gap: 36px;
  align-items: start;
}

.footer-brand-area{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding-top: 0;
}

.footer-identity-text{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  line-height: 0;
}

.footer-brand-image{
  display: block;
  width: 100%;
  max-width: 260px; /* mexa aqui para diminuir/aumentar o logo do footer no desktop */
  height: auto;
  object-fit: contain;
  margin: 0;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.08))
    drop-shadow(0 0 8px rgba(80,140,255,.05));
}

.footer-text{
  margin: 0;
  max-width: 360px;
  color: rgba(234,241,255,.72);
  font-size: 15px;
  line-height: 1.8;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.footer-links a{
  color: rgba(234,241,255,.76);
  text-decoration: none;
  font-size: 14px;
  transition:
    color .25s ease,
    transform .25s ease;
}

.footer-links a:hover{
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}

.footer-contact p{
  margin: 0;
  color: rgba(234,241,255,.75);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact strong{
  color: #ffffff;
  font-weight: 700;
}

.footer-follow{
  margin-top: 10px !important;
  font-size: 13px !important;
  color: rgba(234,241,255,.65) !important;
}

.footer-social{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.footer-social a{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(70,160,255,.08);
  border: 1px solid rgba(70,160,255,.15);
  text-decoration: none;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.footer-social a:hover{
  transform: translateY(-3px);
  background: rgba(70,160,255,.18);
  border-color: rgba(110,190,255,.26);
  box-shadow:
    0 12px 30px rgba(0,0,0,.40),
    0 0 18px rgba(0,160,255,.08);
}

.footer-social svg{
  width: 20px;
  height: 20px;
  color: #eaf1ff;
  fill: currentColor;
}

.footer-bottom{
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom-copy{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footer-bottom-copy p{
  margin: 0;
  font-size: 13px;
  color: rgba(234,241,255,.55);
  letter-spacing: .3px;
  line-height: 1.6;
  transition: color .3s ease;
}

.footer-bottom-copy p:hover{
  color: rgba(234,241,255,.85);
}

.footer-created-by{
  font-size: 12px;
  color: rgba(234,241,255,.42);
}

.footer-created-by strong{
  color: rgba(234,241,255,.70);
}

.footer-bottom-links{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(15,50,96,.52);
  border: 1px solid rgba(70,160,255,.22);
  color: #eef3ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.footer-bottom-links a:hover{
  transform: translateY(-2px);
  background: rgba(25,75,138,.72);
  border-color: rgba(100,180,255,.34);
  box-shadow:
    0 12px 30px rgba(0,0,0,.28),
    0 0 20px rgba(0,160,255,.10);
}

/* TEMA LIGHT FOOTER */
:root[data-theme="light"] .site-footer{
  border-top: 1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(900px 320px at 18% 0%, rgba(47,123,255,.06), transparent 62%),
    radial-gradient(780px 260px at 82% 8%, rgba(0,209,255,.04), transparent 68%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

:root[data-theme="light"] .footer-text,
:root[data-theme="light"] .footer-links a,
:root[data-theme="light"] .footer-contact p,
:root[data-theme="light"] .footer-follow,
:root[data-theme="light"] .footer-bottom-copy p,
:root[data-theme="light"] .footer-created-by{
  color: rgba(15,23,42,.72);
}

:root[data-theme="light"] .footer-contact strong{
  color: #0f172a;
}

:root[data-theme="light"] .footer-links a:hover{
  color: #0b1f44;
}

:root[data-theme="light"] .footer-social a{
  background: rgba(47,123,255,.06);
  border-color: rgba(47,123,255,.14);
}

:root[data-theme="light"] .footer-social a:hover{
  background: rgba(47,123,255,.12);
  border-color: rgba(47,123,255,.22);
  box-shadow: 0 10px 24px rgba(47,123,255,.08);
}

:root[data-theme="light"] .footer-social svg{
  color: #173a78;
}

:root[data-theme="light"] .footer-bottom{
  border-top: 1px solid rgba(15,23,42,.08);
}

:root[data-theme="light"] .footer-bottom-links a{
  background: rgba(47,123,255,.08);
  border-color: rgba(47,123,255,.16);
  color: #173a78;
}

:root[data-theme="light"] .footer-bottom-links a:hover{
  background: rgba(47,123,255,.14);
  border-color: rgba(47,123,255,.24);
  box-shadow: 0 10px 22px rgba(47,123,255,.08);
}

/* FOOTER TABLET */
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand-area,
  .footer-links,
  .footer-contact{
    align-items: flex-start;
  }

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

  .footer-bottom-links{
    width: 100%;
  }

  .footer-brand-area{
    gap: 10px;
    padding-top: 0;
  }

  .footer-brand-image{
    max-width: 230px;
  }
}

/* FOOTER MOBILE */
@media (max-width: 700px){
  .site-footer{
    margin-top: 60px;
    padding: 44px 0 24px;
  }

  .footer-brand-area{
    gap: 8px;
  }

  .footer-brand-image{
    max-width: 200px;
  }

  .footer-text{
    max-width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-links a,
  .footer-contact p{
    font-size: 14px;
  }

  .footer-bottom-copy p{
    font-size: 12px;
  }

  .footer-bottom-links{
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .footer-bottom-links a{
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   PATCH FINAL
   HEADER E FOOTER SEMPRE ESCUROS
======================================== */

.site-header,
:root[data-theme="light"] .site-header{
  background:
    linear-gradient(180deg, rgba(5,11,24,.96) 0%, rgba(3,8,20,.92) 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.18) !important;
}

.site-header.is-scrolled,
:root[data-theme="light"] .site-header.is-scrolled{
  background:
    linear-gradient(180deg, rgba(5,11,24,.98) 0%, rgba(3,8,20,.94) 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

/* menu desktop sempre escuro */
.nav.nav-desktop,
:root[data-theme="light"] .nav.nav-desktop{
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 14px 30px rgba(0,0,0,.22) !important;
}

/* links */
.nav a,
.nav a:visited,
:root[data-theme="light"] .nav a,
:root[data-theme="light"] .nav a:visited{
  color: rgba(234,241,255,.82) !important;
  -webkit-text-fill-color: rgba(234,241,255,.82) !important;
  background: transparent !important;
  border-color: transparent !important;
}

.nav a:hover,
:root[data-theme="light"] .nav a:hover{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)) !important;
  border-color: rgba(255,255,255,.08) !important;
}

.nav a.is-active,
.nav a[aria-current="page"],
:root[data-theme="light"] .nav a.is-active,
:root[data-theme="light"] .nav a[aria-current="page"]{
  color: #f4f8ff !important;
  -webkit-text-fill-color: #f4f8ff !important;
  background:
    linear-gradient(135deg, rgba(47,123,255,.24), rgba(0,209,255,.12)) !important;
  border-color: rgba(0,209,255,.22) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 10px 24px rgba(0,0,0,.18),
    0 0 18px rgba(0,209,255,.10) !important;
}

/* compliance */
.nav-dropdown__toggle,
:root[data-theme="light"] .nav-dropdown__toggle{
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  border: 1px solid rgba(0,209,255,.24) !important;
  background:
    linear-gradient(135deg, rgba(47,123,255,.20), rgba(0,209,255,.12)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 10px 24px rgba(0,0,0,.18),
    0 0 20px rgba(0,209,255,.08) !important;
}

.nav-dropdown__toggle:hover,
:root[data-theme="light"] .nav-dropdown__toggle:hover{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(0,209,255,.42) !important;
  background:
    linear-gradient(135deg, rgba(47,123,255,.28), rgba(0,209,255,.18)) !important;
}

.nav-dropdown__toggle span,
.nav-dropdown__toggle .nav-dropdown__caret,
:root[data-theme="light"] .nav-dropdown__toggle span,
:root[data-theme="light"] .nav-dropdown__toggle .nav-dropdown__caret{
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

.nav-dropdown__menu,
:root[data-theme="light"] .nav-dropdown__menu{
  background:
    linear-gradient(180deg, rgba(8,15,30,.98) 0%, rgba(5,11,24,.96) 100%) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow:
    0 18px 44px rgba(0,0,0,.30),
    0 0 22px rgba(0,209,255,.08) !important;
}

.nav-dropdown__item,
:root[data-theme="light"] .nav-dropdown__item{
  color: rgba(234,241,255,.86) !important;
  -webkit-text-fill-color: rgba(234,241,255,.86) !important;
  background: transparent !important;
}

.nav-dropdown__item:hover,
:root[data-theme="light"] .nav-dropdown__item:hover{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)) !important;
}

.nav-dropdown__item.is-active,
:root[data-theme="light"] .nav-dropdown__item.is-active{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: linear-gradient(135deg, rgba(47,123,255,.18), rgba(0,209,255,.10)) !important;
  border-color: rgba(0,209,255,.18) !important;
}

/* toggle */
.theme-toggle,
:root[data-theme="light"] .theme-toggle{
  background: transparent !important;
}

/* footer sempre escuro */
.site-footer,
.footer,
:root[data-theme="light"] .site-footer,
:root[data-theme="light"] .footer{
  background:
    linear-gradient(180deg, #06101f 0%, #071427 100%) !important;
  color: #eaf1ff !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}

.site-footer *,
.footer *,
:root[data-theme="light"] .site-footer *,
:root[data-theme="light"] .footer *{
  color: inherit !important;
}

.site-footer a,
.footer a,
:root[data-theme="light"] .site-footer a,
:root[data-theme="light"] .footer a{
  color: rgba(234,241,255,.82) !important;
}

.site-footer a:hover,
.footer a:hover,
:root[data-theme="light"] .site-footer a:hover,
:root[data-theme="light"] .footer a:hover{
  color: #ffffff !important;
}
/* ========================================
   CANAL DE DENÚNCIAS - PÁGINA EM CONSTRUÇÃO
======================================== */

.canal-page{
  position: relative;
  min-height: calc(100vh - 160px);
  overflow: hidden;
}

.canal-page--construction{
  background:
    radial-gradient(900px 420px at 14% 8%, rgba(47,123,255,.08), transparent 60%),
    radial-gradient(780px 380px at 86% 12%, rgba(0,209,255,.06), transparent 62%),
    linear-gradient(180deg, rgba(4,14,28,.96), rgba(5,16,32,.98));
}

.canal-hero{
  position: relative;
  padding: clamp(90px, 10vw, 140px) 0 clamp(80px, 8vw, 120px);
}

.canal-card{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 58px);
  border-radius: 30px;
  overflow: hidden;
  text-align: center;

  border: 1px solid rgba(0,209,255,.14);
  background:
    linear-gradient(180deg, rgba(9,26,48,.90), rgba(6,18,36,.94));
  box-shadow:
    0 28px 70px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.canal-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events: none;
}

.canal-card__glow{
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: .18;
  pointer-events: none;
}

.canal-card__glow--left{
  left: -90px;
  top: -80px;
  background: radial-gradient(circle, rgba(47,123,255,.65), transparent 68%);
}

.canal-card__glow--right{
  right: -90px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(0,209,255,.55), transparent 68%);
}

.canal-badge{
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;

  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #c9f4ff;

  border: 1px solid rgba(0,209,255,.18);
  background: rgba(0,209,255,.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.02),
    0 10px 24px rgba(0,0,0,.18);
}

.canal-badge__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #00D1FF;
  box-shadow:
    0 0 0 5px rgba(0,209,255,.10),
    0 0 14px rgba(0,209,255,.45);
}

.canal-icon{
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}

.canal-icon__ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(0,209,255,.14), rgba(47,123,255,.06) 52%, transparent 70%);
  box-shadow:
    0 0 0 1px rgba(0,209,255,.10),
    0 0 34px rgba(0,209,255,.10);
}

.canal-icon__core{
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #9feeff;
  border: 1px solid rgba(0,209,255,.16);
  background:
    linear-gradient(180deg, rgba(47,123,255,.18), rgba(0,209,255,.08));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 16px 32px rgba(0,0,0,.20);
}

.canal-icon__core svg{
  width: 34px;
  height: 34px;
}

.canal-kicker{
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(160,215,255,.76);
}

.canal-title{
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #f5fbff;
}

.canal-description{
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.85;
  color: rgba(224,242,255,.88);
}

.canal-description strong{
  color: #ffffff;
  font-weight: 800;
}

.canal-description--secondary{
  margin-top: 14px;
  color: rgba(188,218,242,.76);
}

.canal-status-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.canal-status-card{
  padding: 18px 18px 16px;
  border-radius: 20px;
  text-align: left;

  border: 1px solid rgba(0,209,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03);
}

.canal-status-card__label{
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(167,210,240,.66);
}

.canal-status-card__value{
  display: block;
  font-size: .98rem;
  line-height: 1.45;
  color: #f3fbff;
  font-weight: 800;
}

.canal-actions{
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.canal-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.canal-btn--primary{
  color: #ffffff;
  border: 1px solid rgba(0,209,255,.22);
  background:
    linear-gradient(135deg, rgba(47,123,255,.24), rgba(0,209,255,.14));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 14px 30px rgba(0,0,0,.22),
    0 0 18px rgba(0,209,255,.08);
}

.canal-btn--primary:hover{
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(0,209,255,.36);
  background:
    linear-gradient(135deg, rgba(47,123,255,.30), rgba(0,209,255,.20));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 18px 36px rgba(0,0,0,.28),
    0 0 24px rgba(0,209,255,.12);
}

/* LIGHT THEME */
:root[data-theme="light"] .canal-page--construction{
  background:
    radial-gradient(900px 420px at 14% 8%, rgba(47,123,255,.06), transparent 60%),
    radial-gradient(780px 380px at 86% 12%, rgba(0,209,255,.05), transparent 62%),
    linear-gradient(180deg, #f7fbff, #eef5ff);
}

:root[data-theme="light"] .canal-card{
  border-color: rgba(47,123,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,250,255,.96));
  box-shadow:
    0 24px 56px rgba(47,123,255,.10),
    inset 0 1px 0 rgba(255,255,255,.85);
}

:root[data-theme="light"] .canal-badge{
  color: #1f5da8;
  border-color: rgba(47,123,255,.14);
  background: rgba(47,123,255,.06);
}

:root[data-theme="light"] .canal-kicker{
  color: rgba(23,58,120,.70);
}

:root[data-theme="light"] .canal-title{
  color: #0b2340;
}

:root[data-theme="light"] .canal-description{
  color: rgba(15,23,42,.82);
}

:root[data-theme="light"] .canal-description--secondary{
  color: rgba(15,23,42,.66);
}

:root[data-theme="light"] .canal-status-card{
  border-color: rgba(47,123,255,.10);
  background:
    linear-gradient(180deg, rgba(47,123,255,.03), rgba(0,209,255,.025));
}

:root[data-theme="light"] .canal-status-card__label{
  color: rgba(23,58,120,.62);
}

:root[data-theme="light"] .canal-status-card__value{
  color: #0b2340;
}

:root[data-theme="light"] .canal-btn--primary{
  color: #0b2340;
  border-color: rgba(47,123,255,.16);
  background:
    linear-gradient(135deg, rgba(47,123,255,.12), rgba(0,209,255,.08));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.55),
    0 12px 24px rgba(47,123,255,.08);
}

:root[data-theme="light"] .canal-btn--primary:hover{
  color: #081a30;
  border-color: rgba(47,123,255,.26);
  background:
    linear-gradient(135deg, rgba(47,123,255,.16), rgba(0,209,255,.10));
}

/* RESPONSIVO */
@media (max-width: 900px){
  .canal-status-grid{
    grid-template-columns: 1fr;
  }

  .canal-card{
    padding: 28px 22px;
    border-radius: 24px;
  }
}

@media (max-width: 640px){
  .canal-hero{
    padding: 76px 0 60px;
  }

  .canal-title{
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .canal-description{
    line-height: 1.75;
  }

  .canal-btn{
    width: 100%;
  }
}
/* ========================================
   FOOTER - CANAL DE DENÚNCIAS (DESTAQUE PREMIUM)
======================================== */

.footer-bottom-links{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-denuncia-btn{
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  overflow: hidden;

  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #ffffff !important;

  border: 1px solid rgba(0, 209, 255, .40) !important;
  background:
    linear-gradient(135deg, rgba(47,123,255,.38), rgba(0,209,255,.26)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 18px 36px rgba(0,0,0,.28),
    0 0 26px rgba(0,209,255,.18),
    0 0 0 6px rgba(0,209,255,.05);

  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease,
    color .22s ease;
}

.footer-denuncia-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  transform: translateX(-100%);
  transition: transform .65s ease;
  pointer-events: none;
}

.footer-denuncia-btn::after{
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}

.footer-denuncia-btn:hover{
  transform: translateY(-3px) scale(1.02);
  color: #ffffff !important;
  border-color: rgba(0,209,255,.65) !important;
  background:
    linear-gradient(135deg, rgba(47,123,255,.48), rgba(0,209,255,.34)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 24px 44px rgba(0,0,0,.34),
    0 0 34px rgba(0,209,255,.26),
    0 0 0 8px rgba(0,209,255,.07);
}

.footer-denuncia-btn:hover::before{
  transform: translateX(100%);
}

.footer-denuncia-btn__dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex: 0 0 12px;
  background: #00D1FF;
  box-shadow:
    0 0 0 6px rgba(0,209,255,.12),
    0 0 20px rgba(0,209,255,.70),
    0 0 32px rgba(0,209,255,.38);
}

.footer-denuncia-btn span:last-child{
  position: relative;
  z-index: 1;
}

.footer-denuncia-btn:focus-visible{
  outline: 2px solid rgba(0,209,255,.55);
  outline-offset: 4px;
}

/* LIGHT */
:root[data-theme="light"] .footer-denuncia-btn{
  color: #0b2340 !important;
  border-color: rgba(47,123,255,.30) !important;
  background:
    linear-gradient(135deg, rgba(47,123,255,.18), rgba(0,209,255,.14)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.55),
    0 14px 28px rgba(47,123,255,.12),
    0 0 18px rgba(47,123,255,.08),
    0 0 0 6px rgba(47,123,255,.04);
}

:root[data-theme="light"] .footer-denuncia-btn:hover{
  color: #081a30 !important;
  border-color: rgba(47,123,255,.44) !important;
  background:
    linear-gradient(135deg, rgba(47,123,255,.24), rgba(0,209,255,.18)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.65),
    0 18px 34px rgba(47,123,255,.16),
    0 0 22px rgba(47,123,255,.10),
    0 0 0 8px rgba(47,123,255,.05);
}

/* RESPONSIVO */
@media (max-width: 900px){
  .footer-bottom-links{
    justify-content: center;
  }

  .footer-denuncia-btn{
    min-height: 50px;
    padding: 0 22px;
    font-size: 14px;
  }
}

@media (max-width: 640px){
  .footer-denuncia-btn{
    width: 100%;
    max-width: 340px;
    margin-top: 6px;
  }
}