/* ===== Base / Reset ===== */
:root {
    --zoomfix: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background: linear-gradient(180deg, #0F0F0F, #1A1A1A);
    font-family: 'Sora', sans-serif;
    color: #FFF;
    overflow: hidden;
}

/* ===== Zoom wrapper ===== */
.fix-zoom {
    transform: scale(var(--zoomfix));
    transform-origin: top left;
    width: calc(100vw / var(--zoomfix));
    height: calc(100vh / var(--zoomfix));
    overflow: hidden;
    position: relative;
}

/* ===== Light balls ===== */
.light-ball {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 300px;
    background: rgba(255, 255, 255, 0.20);
    filter: blur(200px);
    pointer-events: none;
    z-index: 0;
}

.light-ball.top {
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
}

.light-ball.bottom-right {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

.light-ball.bottom-left {
    bottom: 10%;
    left: 0;
    transform: translate(-30%, 30%);
}

/* ===== Top bars ===== */
.language-switcher,
.music-player {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.603);
    padding: 6px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.language-switcher {
    top: 16px;
    right: 24px;
}

.music-player {
    top: 16px;
    left: 24px;
}

.flag {
    width: 32px;
    height: 22px;
    cursor: pointer;
    transition: transform .2s;
}

.flag:hover {
    transform: scale(1.08);
}

.terms-btn, .team-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.603);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: .25s;
    text-decoration: none;
}

.terms-btn:hover, .team-btn:hover {
    background: #fff;
    color: #171717;
    border-color: rgba(255, 255, 255, 0.80);
}

/* ===== Player corrigido ===== */
.music-player {
    display: flex;
    align-items: center;
    gap: 8px;
}

.music-player>* {
    flex: 0 0 auto;
}

.icon-btn {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: #fff;
}

.icon-btn svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: #fff;
    opacity: .9;
    transition: opacity .2s;
}

.icon-btn:hover svg {
    opacity: 1;
}

.music-player input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 90px;
    height: 4px;
    background: transparent;
    margin: 0 0 0 4px;
    outline: none;
    align-self: center;
}

.music-player input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: rgba(255, 255, 255, .25);
    border-radius: 2px;
}

.music-player input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    margin-top: -4px;
}

.music-player input[type="range"]::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, .25);
    border-radius: 2px;
}

.music-player input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: none;
}

.track-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px; /* ajuste para não quebrar o layout */
}

/* ===== Stage ===== */
.stage, .stage-fix {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0vh 2vh 2vh;
}

.stage.stage--terms {
    padding-top: 2vh;
}

.logo-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 56%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.logo {
    width: 358px;
    height: 170px;
    object-fit: contain;
    z-index: 2;
    user-select: none;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 18px;
    padding: 0 16px;
}

/* ===== Welcome / CTA ===== */
.welcome-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.welcome-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 318px;
    height: 52px;
    border-radius: 3px;
    background: #F9F6EE;
    color: #171717;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .2px;
    animation: fadeIn .8s ease-in-out;
}

.discord-btn {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.603);
    transition: .25s;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.discord-btn:hover {
    background: #ffffff;
    color: #171717;
    box-shadow: 0 6px 14px rgba(255, 255, 255, .15);
}

.discord-btn:hover svg {
    fill: #171717;
}

/* ===== Texto ===== */
.intro-text {
    max-width: min(900px, 90vw);
    color: rgba(255, 255, 255, 0.70);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.intro-text span {
    color: #fff;
    opacity: .9;
    font-weight: 700;
}

/* ===== Logos ===== */
.container-logos {
    width: min(1000px, 92vw);
    margin: 30px auto 0;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.603);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(1px);
}

.client-logos {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 18px 0;
}

.client-logos .line {
    display: flex;
    gap: 60px;
    width: max-content;
    align-items: center;
}

.logos-line1 {
    animation: move-left 20s linear infinite;
}

.logos-line2 {
    animation: move-right 20s linear infinite;
}

.client-logos img {
    height: 60px;
    object-fit: contain;
    opacity: .75;
    transition: .25s;
}

.client-logos img:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
}

/* ===== Página de Termos ===== */
.terms-layout {
    width: min(1100px, 94vw);
    margin: 10px auto 0;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
    align-items: start;
}

.terms-nav {
    position: sticky;
    top: 84px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.term-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    cursor: default;
}

.term-category svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.term-subchip {
    width: 100%;
    text-align: left;
    padding: 9px 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    transition: .18s;
    font-size: 13.5px;
}

.term-subchip:hover {
    background: rgba(255, 255, 255, 0.06);
}

.term-subchip.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.terms-page {
    width: 100%;
    padding: 22px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.603);
    color: rgba(255, 255, 255, 0.86);
    text-align: left;
}

.term-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  justify-content: flex-start; /* 🔥 força alinhar à esquerda */
}


.term-header svg {
    width: 20px;
    height: 20px;
}

.term-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  opacity: .96;
  text-align: left; /* 🔥 garante alinhamento */
}

.term-cat-description {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.78);
}

.term-subtitle {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    opacity: .92;
    margin: 8px 0 6px;
}

.term-body p {
    line-height: 1.6;
}


/* FOOTER */
.site-footer {
  background: #0f0f0f42; /* fundo escuro */
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0 0 10px 0;
  font-weight: 400;
  opacity: 0.85;
}



.terms-layout {
  width: min(1100px, 94vw);
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: stretch; /* 🔥 mesma altura */
}

/* Caixa única da navegação */
.terms-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.603);
  backdrop-filter: blur(4px);
  height: 100%;          /* 🔥 ocupa altura toda */
}

/* Categoria: só título, sem cara de botão */
.term-category {
  font-weight: 800;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  margin-bottom: 2px;
  padding-left: 4px;
  cursor: default;
}

/* Subitens clean */
.term-subchip {
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  cursor: pointer;
  transition: .18s;
}

.term-subchip:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.term-subchip.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}



.terms-nav,
.terms-page {
  height: 100%;   /* 🔥 garante que acompanhem a altura */
}

.last-update {
  margin-top: 72px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12); /* 🔥 linha separadora */
  text-align: center; /* 🔥 centraliza */
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}


/* ===== PÁGINA DA EQUIPE ===== */
.team-page-container {
    width: min(1200px, 94vw);
    margin: 0 auto;
    padding: 40px 16px 80px; /* Espaço para não colar no footer */
    text-align: center;
}


.team-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.team-page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 40px;
    font-weight: 500;
}

.team-grid {
    display: grid;
    /* Grid responsiva:
       - No mínimo 220px por coluna
       - max(2, 4) significa que tentará ter 4 colunas, mas não menos que 2 (em telas menores)
       - Para 3x3, se houver 6 itens, a flexibilidade do 'auto-fit' e 'minmax' já ajuda.
         Vamos garantir 4 colunas em telas maiores e 2 ou 3 em telas médias.
    */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Ajustes para a grid em diferentes tamanhos de tela */
@media (min-width: 900px) {
    .team-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(0, 250px));

    justify-content: center;

    gap: 20px;

}
}

@media (min-width: 600px) and (max-width: 899px) {
    .team-grid {
        /* Para telas médias, tentar 3 colunas */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 599px) {
    .team-grid {
        /* Para telas pequenas, 2 colunas */
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}


/* CARD BASE */
.team-card {

    position: relative;
    width: 250px;
    border-radius: 16px;
    overflow: hidden;

    background: rgba(10,10,10,0.85);
    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    transition: 0.3s;
}

.team-card:hover {

    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.18);

}


/* BANNER TOPO */

.team-banner {

    width: 100%;
    height: 90px;

    background-size: cover;
    background-position: center;

}


/* CONTEUDO */

.team-content {

    padding: 15px;

}


/* FOTO PERFIL */

.team-member-photo {

    width: 64px;
    height: 64px;

    border-radius: 50%;

    margin-top: -32px;

    border: 3px solid #0b0b0b;

}


/* NOME */

.team-member-name {

  background: linear-gradient(
    90deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );

  background-size: 400%;

  background-clip: text;              /* padrão */
  -webkit-background-clip: text;     /* chrome, edge, safari */

  color: transparent;                /* padrão */
  -webkit-text-fill-color: transparent;

  animation: rgbText 8s linear infinite;

}

@keyframes rgbText {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}

@keyframes rgbText {

  0% {
    background-position: 0%;
  }

  100% {
    background-position: 400%;
  }

}

/* BRANCOS */
.tech-icon {

  opacity: 0.85;

  filter: grayscale(100%) brightness(200%);

  transition: 0.25s;

}

.tech-icon:hover {

  opacity: 1;

  filter: grayscale(100%) brightness(260%);

}


/* USER */

.team-member-username {

    font-size: 13px;
    opacity: 0.6;
}

/* DESCRIÇÃO */

.team-description {

    margin-top: 12px;
    font-size: 14px;
    opacity: 0.8;

}

/* TAGS */

.team-member-tag {

background: rgba(0,0,0,0.45);

border: 1px solid rgba(255,255,255,0.15);

border-radius: 8px;

padding: 3px 8px;

font-size: 11px;

font-weight: 600;

white-space: nowrap;

backdrop-filter: blur(4px);

}

.team-member-tags {

display: flex;

flex-wrap: wrap;

justify-content: center;

gap: 5px;

margin-top: 4px;

}

.team-member-tag:hover {

transform: scale(1.05);

border-color: rgba(255,255,255,0.35);

}

/* Cores para as tags (personalizável) */
.tag-backend {
    background: rgba(88, 101, 242, 0.2);
    color: #b9c0fa;
    border: 1px solid rgba(88, 101, 242, 0.4);
}

.tag-frontend {
    background: rgba(87, 242, 135, 0.15);
    color: #a4f5ba;
    border: 1px solid rgba(87, 242, 135, 0.3);
}

.tag-designer {
    background: rgba(250, 115, 230, 0.15);
    color: #f8b4ef;
    border: 1px solid rgba(250, 115, 230, 0.3);
}

.tag-manager {
    background: rgba(250, 186, 60, 0.15);
    color: #f7d28c;
    border: 1px solid rgba(250, 186, 60, 0.3);
}

.tag-qa { /* Nova tag */
    background: rgba(0, 170, 255, 0.15);
    color: #a3d9ff;
    border: 1px solid rgba(0, 170, 255, 0.3);
}

.tag-support { /* Nova tag */
    background: rgba(255, 99, 71, 0.15);
    color: #ffb8a7;
    border: 1px solid rgba(255, 99, 71, 0.3);
}

.tag-security { /* Nova tag */
    background: rgba(0, 170, 255, 0.15);
    color: #a3d9ff;
    border: 1px solid rgba(0, 170, 255, 0.3);
}



.tag-default { /* Para tags não mapeadas */
    background: rgba(128, 128, 128, 0.15);
    color: #cccccc;
    border: 1px solid rgba(128, 128, 128, 0.3);
}

/* Caixa de tecnologias */
.team-member-techs-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%; /* Ocupa a largura total do card */
    margin-top: auto; /* Empurra a caixa para o final do card se o conteúdo for menor */
}

.tech-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.8;
    transition: transform .2s, opacity .2s;
}

.tech-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Reativar logo-left para a página de equipe */
.team-page-container + .logo-left { /* Ajusta o seletor para garantir que funcione */
    display: block;
}





/* ===== PÁGINA DE BUSCA E LOG ===== */
.search-container, .log-viewer-container {
    width: min(900px, 90vw);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.603);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(4px);
    text-align: center;
    z-index: 2; /* Para ficar sobre o logo-left se ele estiver presente */
}

.search-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 8px;
}

.search-subtitle {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#protocol-input {
    width: min(400px, 60vw);
    height: 52px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    color: #fff;
    padding: 0 15px;
    outline: none;
    transition: all 0.2s ease-in-out;
}

#protocol-input:focus {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.search-btn {
    height: 52px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 700;
    background: #fff;
    color: #171717;
    border: 1px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.search-btn:hover {
    background: transparent;
    color: #fff;
}

/* ===== Notificação Customizada ===== */
.notification-box {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c; /* Cor de erro */
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s, transform 0.5s;
}

.notification-box.hidden {
    opacity: 0;
    transform: translate(-50%, 100px);
    pointer-events: none;
}

#notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* ===== Página do Log Viewer ===== */
.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.log-header .search-title {
    margin: 0;
}
.back-btn {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
}
.log-content-wrapper {
    width: 100%;
    height: 70vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #2c2f33; /* Cor de fundo do Discord */
}
#log-content-frame {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Stage com 2 colunas ===== */
.stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 320px; /* conteúdo + testimonials */
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
}

.stage.no-testimonials {
  grid-template-columns: 1fr;
  justify-content: center;
}

/* Content: centraliza só os elementos internos */
.content {
  display: grid;
  place-items: center;   /* 🔥 centraliza logo, welcome, intro */
  text-align: center;    /* 🔥 garante texto centralizado */
  gap: 18px;
}

/* ===== Testimonials ===== */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease-in-out;
}

.testimonials.fade-out {
  opacity: 0;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  transition: transform .25s, border-color .25s;
}

.testimonial-photo {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  margin-top: 4px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  opacity: .95;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ===== Notice Bar ===== */
.notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background: linear-gradient(90deg, #ff0042, #ff3366);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.notice-track span {
  margin-right: 80px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* deslocamento-x | deslocamento-y | blur | cor */
}


.notice-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 18s linear infinite;
}



/* Animação */
@keyframes scroll-left {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}



@media (max-width: 900px) {
    /* Esconde logo-left em telas menores, conforme o original */
    .logo-left {
        display: none;
    }
    .team-page-title {
        font-size: 24px;
    }
    .team-page-subtitle {
        font-size: 16px;
    }
}

/* ===== Animações ===== */
@keyframes move-left {
    from {
        transform: translateX(200%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes move-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(200%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* scrol terms */
::-webkit-scrollbar {
width: 6px;
}

::-webkit-scrollbar-track {
background: transparent;
}

::-webkit-scrollbar-thumb {
background: rgba(255,255,255,0.2);
border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
background: rgba(255,255,255,0.4);
}

/* ==== Particulas ==== */
#particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* fica atrás de tudo */
  pointer-events: none;
}

/* ===== Responsivo ===== */
@media (max-width: 900px) {
    .terms-layout {
        grid-template-columns: 1fr;
    }

    .terms-nav {
        position: static;
        top: auto;
    }

    .logo-left {
        display: none;
    }
}