body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bg-nav {
  background-color: #1C1C1C !important;
}


/* Efeito hover no logo da lenontech */

.font-logo {
  font-size: 1.8rem !important;
  color: #808080 !important;
}

/* Hover pink nos botões de navegação */

.text-cyan {
  color: #00feffff !important;
}

.nav-link {
  position: relative !important;
  color: #808080 !important;
  font-weight: 100 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.nav-link-mb {
  position: relative !important;
  color: #808080 !important;
  font-weight: 100 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.nav-link-mb:hover {
  color: #00feffff !important;
}

.nav-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0.6rem;
  height: 2px;
  background-color: #00feffff;
  transition: width 0.3s ease;
  z-index: 0;
}

.nav-link:hover {
  color: #00feffff !important;
}

.nav-link:hover::after {
  width: 50%;
}

.person-icon {
  color: #808080;
  transition: color 0.3s ease;
}

.person-icon:hover {
  color: #00feffff;
  transition: 0.3s ease;
}


/* Botão sanduíche */
.navbar-toggler.toggled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 16 16' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l12 12M14 2L2 14' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
}

/* Menu escondido */
#offcanvasMenu {
  top: 86px;
  height: 320px;
  width: 100%;
  position: fixed !important;
}

.offcanvas {
  transition: none !important;
}

main {
  min-height: 19.9rem;
}

/* =========================
   RODAPÉ (FIX) — Desktop alinhado / Mobile estilo Real Madrid
   ========================= */

.rodape {
  /* Mesmo clima do menu (gradiente + glow) */
  background:
    radial-gradient(900px 320px at 15% -20%, rgba(0, 234, 255, .18), transparent 60%),
    linear-gradient(180deg, rgba(10, 18, 24, .92), rgba(0, 0, 0, .95));
  border-top: 1px solid rgba(0, 234, 255, .14);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}

.rodape::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background:
    radial-gradient(1px 1px at 20px 20px, rgba(0, 234, 255, .18) 0, transparent 60%),
    radial-gradient(1px 1px at 80px 60px, rgba(0, 234, 255, .12) 0, transparent 60%),
    radial-gradient(1px 1px at 140px 120px, rgba(0, 234, 255, .10) 0, transparent 60%);
  background-size: 220px 180px;
}

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

/* BRAND / LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 234, 255, .16));
}

.footer-brand-name {
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 1.55rem;
  line-height: 1.1;
  color: #eafcff;
}

/* Títulos “Redes / Parceiros” (ficam no Mobile; no Desktop a gente esconde) */
.lt-foot-title {
  font-weight: 800;
  letter-spacing: .6px;
  color: #eafcff;
  margin: 0 0 10px 0;
}

/* SOCIAL */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: #eafcff;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 234, 255, .32);
  background: rgba(0, 234, 255, .08);
  box-shadow: 0 10px 24px rgba(0, 234, 255, .10);
}

/* LINKS / PARCEIROS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.footer-links a:hover {
  color: #ffffff;
  border-color: rgba(0, 234, 255, .35);
}

/* Copyright */
.footer-cr {
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  line-height: 1.3;
}

/* -------- DESKTOP (>= md) --------
   2 linhas:
   Linha 1: logo à esquerda | redes à direita
   Linha 2: direitos à esquerda | parceiros à direita
---------------------------------- */
@media (min-width: 768px) {
  .rodape {
    padding: 26px 0 22px;
  }

  /* a linha do Bootstrap vira um grid “controlador” */
  .rodape .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand social"
      "copy  links";
    column-gap: 44px;
    row-gap: 14px;
    align-items: center;
  }

  /* remove o “box” das colunas do Bootstrap pra liberar os itens internos no grid */
  .rodape .row>[class^="col"],
  .rodape .row>[class*=" col"] {
    display: contents;
  }

  .rodape .footer-logo {
    grid-area: brand;
    justify-self: start;
  }

  .rodape .footer-social {
    grid-area: social;
    justify-self: end;
    justify-content: flex-end;
  }

  .rodape .footer-cr {
    grid-area: copy;
    justify-self: start;
    margin-top: 0;
  }

  .rodape .footer-links {
    grid-area: links;
    justify-self: end;
    justify-content: flex-end;
  }

  /* no desktop não precisa dos títulos “Redes / Parceiros” */
  .rodape .lt-foot-title {
    display: none;
  }
}

/* =========================
   UPGRADE LAYOUT APP - LenonTech
   ========================= */

:root {
  --lt-bg0: #000;
  --lt-bg1: #070a0d;
  --lt-bg2: #0b1116;
  --lt-cyan: #00eaff;
  --lt-cyan2: #10bfb2;
  --lt-text: rgba(255, 255, 255, .92);
  --lt-muted: rgba(255, 255, 255, .65);
  --lt-stroke: rgba(0, 234, 255, .22);
  --lt-stroke2: rgba(0, 234, 255, .35);
  --lt-shadow: 0 18px 45px rgba(0, 0, 0, .55);
}

.lt-body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--lt-text);
}

/* Gradiente padrão nav e footer */
.bg-nav {
  background:
    radial-gradient(900px 380px at 15% 30%, rgba(0, 234, 255, .12), transparent 60%),
    radial-gradient(900px 380px at 85% 10%, rgba(16, 191, 178, .10), transparent 60%),
    linear-gradient(135deg, var(--lt-bg2) 0%, var(--lt-bg0) 55%, var(--lt-bg2) 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.lt-brand .lt-brand-name {
  font-family: Sora, Inter, system-ui;
  letter-spacing: .4px;
}

/* Botões ícone (apps) */
.lt-iconbtn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .9);
}

.lt-iconbtn:hover {
  border-color: var(--lt-stroke2);
  box-shadow: 0 0 0 3px rgba(0, 234, 255, .10);
}

.lt-iconbtn i {
  color: var(--lt-muted);
}

/* Botão de Lenocoins */
.lt-coinbtn {
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lt-coinbtn i {
  color: var(--lt-cyan);
}

.lt-coinval {
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--lt-muted);
}

/* Botão usuário */
.lt-userbtn {
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.lt-userbtn:hover,
.lt-coinbtn:hover {
  border-color: var(--lt-stroke2);
  box-shadow: 0 0 0 3px rgba(0, 234, 255, .10);
}

.lt-userbtn i {
  color: var(--lt-muted);
}

.lt-userBtnName {
  color: var(--lt-muted);
}

/* Dropdown menu premium */
.lt-dropdown-menu {
  background: rgba(8, 12, 14, .96) !important;
  border: 1px solid rgba(255, 255, 255, .10) !important;
  box-shadow: var(--lt-shadow);
  border-radius: 16px;
  overflow: hidden;
  padding: 6px;
}

.lt-dd-item {
  border-radius: 12px;
  padding: 10px 12px;
}

.lt-dd-item:hover {
  background: rgba(0, 234, 255, .08) !important;
}

/* Hover expand no PC (igual FIAP) */
@media (min-width: 992px) {
  .lt-services-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .lt-services-dropdown .dropdown-toggle::after {
    transform: translateY(1px);
  }
}

/* Apps drawer menu */
.lt-apps-menu {
  min-width: 320px;
  width: 290px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 12, 14, .96);
  box-shadow: var(--lt-shadow);
}

.lt-apps-header {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(135deg, rgba(0, 234, 255, .10), rgba(16, 191, 178, .06));
}

.lt-apps-title {
  font-weight: 900;
  letter-spacing: .2px;
}

.lt-apps-sub {
  color: var(--lt-muted);
  font-size: 12px;
}

.lt-apps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lt-app-tile {
  text-decoration: none;
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .05);
  border-radius: 14px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lt-app-tile i {
  color: var(--lt-cyan);
  font-size: 18px;
}

.lt-app-tile span {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
}

.lt-app-tile:hover {
  border-color: var(--lt-stroke2);
  background: rgba(0, 234, 255, .08);
}

/* Coins dropdown gamer */
.lt-coins-menu {
  min-width: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 12, 14, .96);
  box-shadow: var(--lt-shadow);
}

.lt-coins-card {
  border-radius: 18px;
  background:
    radial-gradient(700px 240px at 20% 20%, rgba(0, 234, 255, .14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
}

.lt-coins-title {
  font-weight: 900;
  letter-spacing: .3px;
}

.lt-coins-sub {
  color: var(--lt-muted);
  font-size: 12px;
}

.lt-coins-badge {
  background: rgba(0, 234, 255, .16);
  border: 1px solid rgba(0, 234, 255, .28);
  color: rgba(255, 255, 255, .92);
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
}

.lt-coins-bar {
  height: 10px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
}

.lt-coins-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lt-cyan), var(--lt-cyan2));
}

.lt-coins-hint {
  color: var(--lt-muted);
  font-size: 12px;
}

.lt-coins-cta {
  border-radius: 12px;
  border: 0;
  background: linear-gradient(90deg, var(--lt-cyan), var(--lt-cyan2));
  color: #001014;
  font-weight: 900;
}

/* User dropdown estilo Google */
.lt-user-menu {
  min-width: 340px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 12, 14, .96);
  box-shadow: var(--lt-shadow);
}

.lt-user-card {
  background:
    radial-gradient(700px 240px at 20% 20%, rgba(0, 234, 255, .12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
}

.lt-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 234, 255, .12);
  border: 1px solid rgba(0, 234, 255, .22);
}

.lt-user-avatar i {
  color: var(--lt-cyan);
  font-size: 20px;
}

.lt-user-hello {
  font-weight: 900;
  letter-spacing: .2px;
}

.lt-user-login {
  color: var(--lt-muted);
  font-size: 12px;
}

.lt-user-mini {
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lt-user-cta {
  border-radius: 12px;
  border: 0;
  background: linear-gradient(90deg, var(--lt-cyan), var(--lt-cyan2));
  color: #001014;
  font-weight: 900;
}

.lt-user-ghost {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05) !important;
  color: rgba(165, 163, 163, 0.92) !important;
  font-weight: 900;
}

.lt-user-ghost a {
  color: rgb(153, 9, 9);
}

/* Offcanvas estilo FIAP */
.lt-offcanvas {
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.lt-oc-logo {
  width: 34px;
  height: 34px;
}

.lt-oc-title {
  font-family: Sora, Inter, system-ui;
  font-weight: 900;
  letter-spacing: .4px;
}

.lt-oc-accordion .accordion-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}

.lt-oc-accordion .accordion-button {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .92);
  font-weight: 900;
  letter-spacing: .3px;
}

.lt-oc-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 234, 255, .08);
  box-shadow: none;
}

.lt-oc-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 234, 255, .10);
}

.lt-oc-sub {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, .9);
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .18);
  margin-bottom: 10px;
}

.lt-oc-sub:hover {
  border-color: var(--lt-stroke2);
  background: rgba(0, 234, 255, .08);
}

/* Footer “Real Madrid vibe”: grid + wrap (se um dia você usar essas classes) */
.lt-footer {
  background:
    radial-gradient(900px 380px at 15% 30%, rgba(0, 234, 255, .10), transparent 60%),
    linear-gradient(135deg, var(--lt-bg2) 0%, var(--lt-bg0) 55%, var(--lt-bg2) 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.lt-foot-brand {
  font-family: Sora, Inter, system-ui;
  font-weight: 900;
}

.lt-foot-title {
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .90);
}

.lt-foot-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lt-foot-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
}

.lt-foot-social a:hover {
  border-color: var(--lt-stroke2);
  box-shadow: 0 0 0 3px rgba(0, 234, 255, .10);
}

.lt-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.lt-foot-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, .80);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.lt-foot-links a:hover {
  color: var(--lt-cyan);
}

/* MOBILE: reduzir logo/nome/toggler e esconder setas do carrossel */
@media (max-width: 576px) {
  .lt-logo {
    height: 40px !important;
  }

  .lt-brand-name {
    font-size: 16px;
  }

  .lt-toggler {
    padding: 6px 9px;
    border-radius: 12px;
    transform: scale(.92);
  }

  /* carrossel: some com anterior/próximo, fica só bolinhas */
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }

  /* dropdowns no mobile (PC não usa) */
  .lt-userbtn,
  .lt-coinbtn {
    height: 40px;
    border-radius: 14px;
  }

  .lt-apps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* ====== RODAPÉ MOBILE “REAL MADRID” ====== */
  .rodape {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "brand"
      "social"
      "links"
      "copy";
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    padding: 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  #rodape-logo {
    width: 42px;
    height: 42px;
  }

  .footer-logo span {
    font-size: 1.35rem;
  }

  .footer-social {
    justify-content: center;
    padding: 14px 14px 10px;
    gap: 10px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .footer-links {
    justify-content: center;
    padding: 10px 14px 18px;
    gap: 10px 12px;
  }

  .footer-links a {
    font-size: 13px;
    padding-bottom: 2px;
  }

  .footer-cr {
    padding: 14px 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 12px;
    color: rgba(255, 255, 255, .72);
  }
}

/* Ajuste geral: evitar “apertadinho” */
@media (max-width: 768px) {
  .navbar .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}