
/* Estilo Geral----------------------------------------------------------------------- */
body {
    margin: 0;
    font-family: 'Lora', serif;
      background: url('../imagens/Fundo_regras_v2.png') no-repeat center center fixed;
    background-size: cover;
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2325256b, #2229286c, #1f222279);
    z-index: -1;
}

@font-face {
    font-family: 'Devans'; /* Nome que você usará para se referir à fonte */
    src: url('../imagens/fontes/devans/Devans.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Garante que o texto seja visível durante o carregamento */
}

@font-face {
    font-family: 'Dark Guitar';
    src: url('../imagens/fontes/dark-guitar/Dark Guitar.otf') format('opentype'),
         url('../imagens/fontes/dark-guitar/Dark Guitar.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'Ark';
    src: url('../imagens/fontes/ark/Ark.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Briket'; /* Nome que você usará para a fonte */
    src: url('../imagens/fontes/briket/Briket.otf') format('opentype'),
         url('../imagens/fontes/briket/Briket.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}

/* Estilo inicial para a página */
.page {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estilo ativo para a página carregada */
.page.active {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo da Nav-Bar */
nav {
    background: rgba(50, 52, 53, 0.548);
    color: #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(1px);
}

/* Estilo do Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10%;
    margin-left: 1px;
}

.logo img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: #ecf0f1;
    margin-right: 20px;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    gap: 11px;
}

.sidebar-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #ccc;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.3s ease;
    overflow: hidden;
}

.sidebar-item .icon {
    font-size: 18px;
}

.sidebar-item .highlight-bar {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #b8f1ff, #86eefc, #b8f1ff);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-item:hover .highlight-bar {
    opacity: 1;
}

.sidebar-item:hover {
    color: #b3fcff;
}

/* Container do botão de dados e ícones */
.dado-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
    margin-right: 1%;
    gap: 1em; /* Espaço entre os itens (botão, dado, novo ícone) */
}

/* Botão Glow */
.glow-on-hover {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #cfcfcf;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Efeito ao passar o mouse */
.glow-on-hover:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(180, 255, 255, 0.8);
}

/* Imagem do dado (estilo existente, mantido aqui para referência) */
.dado {
    width: 3.75em; /* Aproximadamente 60px. Usaremos isso como referência de altura. */
    height: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease-in-out;
}

.dado:hover {
    transform: scale(1.2);
}

/* Estilo para o link do novo ícone - Contém as principais mudanças */
.new-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 5em; /* Mantém o grande espaço à direita da navbar */
    /* Adições para o círculo (mantidas para manter a estrutura e alinhamento) */
    width: 4em; /* Define a largura para ser igual à altura do dado para um círculo perfeito */
    height: 4em; /* Define a altura para ser igual à largura (e altura do dado) */
    border-radius: 50%; /* Torna o elemento circular */
    overflow: hidden; /* Garante que a imagem dentro seja cortada para caber no círculo */
    background-color: rgba(255, 255, 255, 0); /* Fundo totalmente transparente */
    margin-bottom: 1rem; /* Alinha com o botão e o dado */
    /* Remova o transition: transform 0.3s ease-in-out; daqui se ele estiver duplicado com .new-icon */
}

/* Estilo para a imagem dentro do novo ícone */
.new-icon {
    width: 80%; /* Ajuste o percentual para a imagem caber bem no círculo */
    height: 80%; /* Ajuste o percentual */
    border-radius: 40%; /* Isso criará cantos arredondados na imagem interna, não a tornará circular completa se a imagem não for quadrada */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; /* Adiciona transition para o filter também */
    object-fit: contain; /* Garante que a imagem se ajuste sem cortar ou distorcer no círculo */
    filter: brightness(1.5); /* Aumenta um pouco o brilho da imagem para destacar */
}

.new-icon-link:hover .new-icon { /* Aplica o efeito diretamente à imagem quando o link é hover */
    transform: scale(1.2); /* Efeito de zoom ao passar o mouse */
}

.Container-nav {
    display: flex;
    justify-content: flex-start;
}
@media (max-width: 480px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 0.4rem; /* Padding reduzido para mais espaço */
        box-sizing: border-box;
        height: auto;
    }

    .logo {
        display: flex;
        align-items: center;
        transform: scale(0.6); /* Logo ainda menor */
    }

    .nav-left {
        margin-right: 0.3rem; /* Margem reduzida */
    }

    .logo img {
        max-width: 50px; /* Reduzir ainda mais a imagem do logo */
        max-height: 50px;
        margin-right: 0.1rem;
    }

    .logo h1 {
        font-size: 0.8rem; /* Fonte do título menor */
        margin: 0;
    }

    .nav-middle {
        display: flex;
        justify-content: center;
        width: 65%; /* Um pouco mais de largura para o nav-middle */
    }

    .nav-links {
        display: grid;
        /* Em telas muito pequenas, 3 ou 4 colunas podem ser mais eficazes para evitar cortes */
        grid-template-columns: repeat(auto-fit, minmax(28px, 1fr)); /* Min-width menor */
        gap: 0.2rem; /* Gap ainda menor */
        width: 100%;
        padding: 20px 0; /* Padding vertical reduzido */
        margin-left: 0;
        margin-right: 0;
    }

    .sidebar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: auto;
        padding: 0.3rem; /* Padding reduzido */
        font-size: 0.5rem; /* Fonte do item menor */
        text-align: center;
        overflow: hidden;
    }

    .sidebar-item .icon {
        font-size: 0.8rem; /* Tamanho do ícone menor */
        margin-bottom: 0.1rem;
    }

    .sidebar-item span {
        display: block;
        font-size: 0.5rem; /* Fonte do texto do item menor */
        line-height: 1;
    }

    .nav-right {
        display: flex;
        align-items: center;
        margin-right: -2rem; /* Ajustar margem para que não corte */
        margin-bottom: 1rem; /* Ajustar margem */
    }

    .dado-container {
        display: flex;
        align-items: center;
        gap: 0.2rem; /* Gap menor */
        margin-left: 0.5rem; /* Margem ajustada */
    }

    .glow-on-hover {
        font-size: 0.5rem; /* Fonte do botão menor */
        padding: 0.1rem 0.3rem;
        margin-right: 0;
    }

    .dado {
        width: 1.5rem; /* Dado menor */
        height: auto;
        margin-bottom: 0;
    }
}

/* ======================================================= */
/* Ajustes para celulares maiores e tablets pequenos (481px a 767px) */
/* ======================================================= */
@media (min-width: 481px) and (max-width: 767px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.4rem 0.6rem; /* Padding ligeiramente ajustado */
        box-sizing: border-box;
        height: auto;
    }

    .logo {
        display: flex;
        align-items: center;
        transform: scale(0.65); /* Escala intermediária para o logo */
    }

    .nav-left {
        margin-right: 0.4rem;
    }

    .logo img {
        max-width: 55px; /* Tamanho intermediário para a imagem do logo */
        max-height: 55px;
        margin-right: 0.1rem;
    }

    .logo h1 {
        font-size: 0.85rem; /* Fonte intermediária para o título */
        margin: 0;
    }

    .nav-middle {
        display: flex;
        justify-content: center;
        width: 60%; /* Manter largura do nav-middle como na versão de 780px */
    }

    .nav-links {
        display: grid;
        /* Min-width um pouco maior que para 480px, mas ainda otimizado para menos espaço */
        grid-template-columns: repeat(auto-fit, minmax(25px, 1fr));
        gap: 0.3rem; /* Gap ligeiramente menor que o original de 780px */
        width: 100%;
        padding: 25px 0; /* Padding vertical ajustado */
        margin-left: 0;
        margin-right: 0;
    }

    .sidebar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: auto;
        padding: 0.4rem; /* Padding ligeiramente ajustado */
        font-size: 0.55rem; /* Fonte do item ligeiramente ajustada */
        text-align: center;
        overflow: hidden;
    }

    .sidebar-item .icon {
        font-size: 0.9rem; /* Tamanho do ícone ligeiramente ajustado */
        margin-bottom: 0.2rem;
    }

    .sidebar-item span {
        display: block;
        font-size: 0.55rem;
        line-height: 1.05;
    }

    .nav-right {
        display: flex;
        align-items: center;
        margin-right: -2.5rem; /* Ajuste similar ao de 780px, mas ligeiramente ajustado */
        margin-bottom: 1.5rem; /* Ajuste similar ao de 780px, mas ligeiramente ajustado */
    }

    .dado-container {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        margin-left: 0.8rem;
    }

    .glow-on-hover {
        font-size: 0.55rem;
        padding: 0.15rem 0.35rem;
        margin-right: 0;
    }

    .dado {
        width: 1.8rem;
        height: auto;
        margin-bottom: 0;
    }
}

/* ================================================= */
/* Ajustes para tablets maiores e laptops pequenos (768px a 1024px) */
/* ================================================= */
@media (min-width: 768px) and (max-width: 1024px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0.8rem;
        box-sizing: border-box;
        height: auto;
       
    }

    .logo {
        display: flex;
        align-items: center;
        transform: scale(0.7); /* Manter escala do logo igual ao original de 780px */
    }

    .nav-left {
        margin-right: 0.5rem;
    }

    .logo img {
        max-width: 60px; /* Manter tamanho da imagem do logo */
        max-height: 60px;
        margin-right: 0.1rem;
    }

    .logo h1 {
        font-size: 0.9rem; /* Manter fonte do título */
        margin: 0;
    }

    .nav-middle {
        display: flex;
        justify-content: center;
        width: 60%; /* Manter largura do nav-middle */
    }

    .nav-links {
        display: grid;
        /* Aqui podemos dar um pouco mais de espaço para cada coluna, ou manter o repeat(6, 1fr) se os textos couberem */
        /* Vou manter o auto-fit para flexibilidade, com um min-width um pouco maior */
        grid-template-columns: repeat(auto-fit, minmax(38px, 1fr)); /* Min-width ajustado */
        gap: 0.5rem; /* Ajustar o gap, ligeiramente maior que 767px */
        width: 100%;
        padding: 30px 0;
        margin-left: 0;
        margin-right: 0;
    }

    .sidebar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: auto;
        padding: 0.5rem;
        font-size: 0.6rem;
        text-align: center;
        overflow: hidden;
    }

    .sidebar-item .icon {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .sidebar-item span {
        display: block;
        font-size: 0.6rem;
        line-height: 1.1;
    }

     .dado-container {
        flex-direction: column; /* Ícone abaixo do botão e dado */
        align-items: center; /* Centraliza horizontalmente na coluna */
        gap: 0.3rem; /* Espaço entre os elementos empilhados */
        margin-left: 0; /* Ajuste se houver margem que atrapalhe o centralizar */
        margin-right: 0;
    }

    .glow-on-hover {
        font-size: 0.6rem;
        padding: 0.2rem 0.3rem;
        margin-bottom: 0.2rem; /* Espaço abaixo do botão */
    }

    .dado {
        width: 2rem;
        height: auto;
        margin-bottom: 0.2rem; /* Espaço abaixo do dado */
    }

    .new-icon-link {
        width: 2.5em; /* Ajuste o tamanho do container do ícone */
        height: 2.5em;
        margin-bottom: 0; /* Não precisa de margem inferior extra */
        margin-right: 0; /* Remove a margem direita para centralizar melhor */
    }

    .new-icon {
        width: 85%;
        height: 85%;
    }

    .nav-right {
        margin-right: 0; /* Garante que o nav-right não empurre para fora */
        margin-bottom: 0; /* Ajusta a margem para evitar excesso de espaço */
    }
}



  
/* Ajustes para telas menores (até 780px) */
@media (max-width: 780px) {
  nav {
      display: flex; /* Alinha os três blocos principais horizontalmente */
      justify-content: space-between; /* Espaço máximo entre os blocos */
      align-items: center; /* Alinha verticalmente ao centro */
      padding: 0.5rem 1rem;
      box-sizing: border-box;
      height: auto;
    
  }

  .logo {
      display: flex;
      align-items: center;
      transform: scale(0.7); /* Ajuste o tamanho do logo se necessário */
  }
  .nav-left{
 margin-right: 0.3rem;

  }
  .logo img {
      max-width: 45px;
      max-height: 45px;
      margin-right: 0.1rem;
  }

  .logo h1 {
      font-size: 0.7rem;
      margin: 0;
  }

  .nav-middle {
      display: flex;
      justify-content: center; /* Centraliza o conteúdo horizontalmente */
      width: 70%; /* Ocupa uma parte da largura para os ícones */
  }

.nav-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22px, 1fr)); /* Tente 90px ou 100px */
    gap: 0.5rem; /* Reduzir um pouco o gap pode ajudar */
    width: 100%;
    padding: 30px 0;
    margin-left: 0; /* Remover ou reduzir estas margens */
    margin-right: 0; /* Remover ou reduzir estas margens */
}

  .sidebar-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: auto;
      padding: 0.5rem;
      font-size: 0.6rem;
      text-align: center;
      overflow: hidden;
  }

  .sidebar-item .icon {
      font-size: 1rem;
      margin-bottom: 0.2rem;
  }

  .sidebar-item span {
      display: block;
      font-size: 0.6rem;
      line-height: 1.1;
  }

  .nav-right {
      display: flex;
      align-items: center; /* Alinha verticalmente o botão e a imagem */
      margin-right: -3rem;
      margin-bottom: 2rem;
  }

   .dado-container {
        flex-direction: column; /* Ícone abaixo do botão e dado */
        align-items: center; /* Centraliza horizontalmente na coluna */
        gap: 0.2rem; /* Espaço entre os elementos empilhados */
        margin-left: 0;
        margin-right: 0;
    }

  .glow-on-hover {
        font-size: 0.55rem;
        padding: 0.15rem 0.35rem;
        margin-bottom: 0.15rem;
    }

    .dado {
        width: 1.8rem;
        height: auto;
        margin-bottom: 0.15rem;
    }
    .new-icon-link {
        width: 2.3em;
        height: 2.3em;
        margin-bottom: 0;
        margin-right: 0;
    }

    .new-icon {
        width: 90%;
        height: 90%;
    }

    .nav-right {
        margin-right: 0;
        margin-bottom: 0;
    }
}


/* Menu de Dados */
/* Menu */
.menu {
    position: fixed; /* Fixa o menu em uma posição específica na tela */
    top: 1%; /* Define a distância do menu a partir do topo da tela */
    right: 1%; /* Define a distância do menu a partir da borda direita */
    width: 350px; /* Aumenta a largura do menu */
    background-color: #1d1919ec; /* Cor de fundo */
    border: 1px solid #c0c0c0; /* Borda */
    border-radius: 5px; /* Bordas arredondadas */
    padding: 1.2rem; /* Espaçamento interno maior */
    box-shadow: 0 4px 8px rgba(245, 245, 245, 0.322); /* Sombra */
    z-index: 1000; /* Garante que o menu fique acima de outros elementos */
    color: #defcfd;
    transition: all 0.3s ease;
}

/* Menu escondido */
.hidden {
    display: none;
}

.menu button {
    padding: 0.7rem 1.2rem; /* Botões maiores */
    font-size: 1rem; /* Texto maior nos botões */
    margin: 0.5rem 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Estilo do botão "Fechar" */
#closeMenu {
    background-color: #aa0303;
    color: white;
    float: right;
}

#closeMenu:hover {
    box-shadow: 0 0 15px rgba(253, 189, 11, 0.8); /* Efeito de brilho */
    transform: scale(1.1); /* Aumenta tamanho ao passar o mouse */
}

/* Estilo do botão "Rolar Dados" */
#rollDice {
    background-color: #fc631c;
    color: white;
}

/* Estilo do botão "Limpar Registro" */
#clearRolls {
    background-color: #f89f19;
    color: white;
    padding: 0.7rem 1.2rem; /* Botões maiores */
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#clearRolls:hover {
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.8); /* Efeito de brilho */
    transform: scale(1.1); /* Aumenta tamanho ao passar o mouse */
}

/* Estilo da área de registro */
#rolls {
    margin-top: 1rem;
    max-height: 250px; /* Aumenta a altura da área de registro */
    overflow-y: auto; /* Adiciona rolagem vertical */
    padding-right: 10px; /* Espaço extra para o scroll */
    border: 1px solid #ccc; /* Adiciona uma borda para destacar a área */
    border-radius: 5px;
    background-color: #d1972bb9; /* Fundo levemente diferente para separar visualmente */
}

#rollList {
    list-style: none;
    padding: 0;
    margin: 0;
}

#rollList li {
    margin: 0.3rem 0;
    font-weight: bold;
    color: #1f0101;
}

/* Campos de entrada */
#diceSelect, #playerName {
    width: 100%;
    padding: 0.7rem; /* Aumenta o espaço interno */
    font-size: 1rem; /* Texto maior */
    border: 1px solid #faa80e;
    border-radius: 5px;
    color: #0e0b00;
    margin-top: 5px;
}

/* Responsividade */
@media (max-width: 1780px) {
    .menu {
        width: 300px; /* Diminui o menu em telas menores */
        top: 3%; /* Ajusta a posição */
        right: 3%;
        font-size: 0.9rem; /* Texto menor no menu */
    }

    #closeMenu {
        font-size: 0.7rem; /* Ajusta o tamanho do texto no botão */
    }

    #rolls {
        max-height: 200px; /* Ajusta a altura da área de registro */
    }

    #diceSelect, #playerName {
        padding: 0.5rem; /* Reduz o espaço interno */
        font-size: 0.9rem; /* Texto menor */
    }

    .menu button {
        font-size: 0.6rem; /* Ajusta o tamanho dos botões */
        padding: 0.5rem 0.5rem; /* Reduz o tamanho */
    }
}
/* Estilo para a barra de rolagem */
#rolls::-webkit-scrollbar {
    width: 12px; /* Largura da barra vertical */
    height: 12px; /* Altura da barra horizontal (caso exista) */
}

#rolls::-webkit-scrollbar-thumb {
    background-color: #fc631c; /* Cor da barra de rolagem */
    border-radius: 10px; /* Deixa os cantos arredondados */
    border: 3px solid #ffb936; /* Adiciona um contorno para destacar */
}

#rolls::-webkit-scrollbar-thumb:hover {
    background-color: #f89f19; /* Cor ao passar o mouse */
}

#rolls::-webkit-scrollbar-track {
    background-color: #ffe3a8; /* Fundo do trilho da barra */
    border-radius: 10px; /* Cantos arredondados do trilho */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); /* Leve sombra interna */
}

/* Ajuste do tamanho do scroll para dispositivos móveis */
@media (max-width: 768px) {
    #rolls::-webkit-scrollbar {
        width: 16px; /* Aumenta a largura do scrollbar para ajudar no toque */
    }

    #rolls::-webkit-scrollbar-thumb {
        border: 4px solid #ffb936; /* Ajusta o contorno para manter o tamanho visual */
    }
}


/* fim do nav-bar---------------------------------------------------------------------------- */

main{
    margin-top: 150px;

}

/* ===== ESTILOS GLOBAIS ATUALIZADOS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ===== NOVAS ANIMAÇÕES ===== */
@keyframes pulseGlowCyan {
    0% {
        box-shadow: 0 0 10px rgba(193, 240, 248, 0.4);
    }
    100% {
        box-shadow: 0 0 25px rgba(193, 240, 248, 0.8);
    }
}

@keyframes floatEffect {
    0% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-6px) rotateX(2deg);
    }
    100% {
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes wave {
    0% {
        transform: scaleX(0.1);
        left: 0%;
        background-position: 0% 0%;
    }
    25% {
        transform: scaleX(1);
        left: 0%;
        background-position: 100% 0%;
    }
    50% {
        transform: scaleX(0.1);
        left: 90%;
        background-position: 0% 0%;
    }
    75% {
        transform: scaleX(1);
        left: 0%;
        background-position: 100% 0%;
    }
    100% {
        transform: scaleX(0.1);
        left: 0%;
        background-position: 0% 0%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 6px rgba(193, 240, 248, 0.2);
    }
    50% {
        box-shadow: 0 0 12px rgba(193, 240, 248, 0.4);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ===== TÍTULO PRINCIPAL COM FONTES MENORES ===== */
.titulo_principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 70px auto 20px;
    padding: 0 20px;
    perspective: 1000px;
    
}

.titulo_efeito {
    font-size: 3.5rem; /* Reduzido significativamente */
    font-weight: bold;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('/imagens/fundo_rubi_preto.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 18px;
    padding: 18px 30px;
    border: 2px solid #333333;
    color: #e0e0e0;
    text-shadow:
        0 0 6px rgba(193, 240, 248, 0.5),
        0 0 15px rgba(193, 240, 248, 0.3),
        0 0 30px rgba(193, 240, 248, 0.2);
    position: relative;
    max-width: 320px;
    overflow: hidden;
    animation: pulseGlowCyan 3s infinite alternate, floatEffect 6s ease-in-out infinite;
    transform-style: preserve-3d;
    text-align: center;
}

.titulo_efeito:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #999999, #b6fff3, #d6feff, #b6fff3, #999999);
    animation: wave 8s infinite linear;
    transform-origin: bottom center;
}


/* fim do nav-bar---------------------------------------------------------------------------- */

/* ================================================= */
/* NOVAS ANIMAÇÕES E KEYFRAMES (PARA DECORAÇÃO) */
/* ================================================= */
@keyframes pulseGlowCyan {
    0% { box-shadow: 0 0 10px rgba(193, 240, 248, 0.4), 0 0 25px rgba(193, 240, 248, 0.1); }
    100% { box-shadow: 0 0 20px rgba(193, 240, 248, 0.6), 0 0 40px rgba(193, 240, 248, 0.2); }
}

@keyframes slideInFromBottom {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes backgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Define a animação original, se não estiver definida */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================= */
/* SEÇÕES DE CONTEÚDO - ESTILO DO ARK (DECORADO) */
/* ================================================= */
.regras-section {
    max-width: 1200px;
    margin: 60px auto;
    background: linear-gradient(145deg, #0a0a0a, #000); /* Fundo ainda mais escuro */
    padding: 40px;
    border-radius: 20px;
    border: 3px solid rgba(156, 240, 255, 0.8); /* Borda mais forte */
    box-shadow: 
        0 0 35px rgba(193, 240, 248, 0.5), /* Sombra externa mais intensa */
        inset 0 0 15px rgba(193, 240, 248, 0.1); /* Sombra interna sutil */
    animation: fadeInUp 0.8s ease-out, pulseGlowCyan 4s infinite alternate; /* Adiciona a animação de pulso */
    position: relative; /* Para o divisor animado */
    overflow: hidden;
    margin: 0 auto;
}

.regras-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(156, 240, 255, 0.2), transparent);
    z-index: 1;
    pointer-events: none;
}

.section-titulo {
    font-size: 2.5rem; /* Título maior */
    color: #D6FEFF; /* Cor ciano mais clara */
    text-align: center;
    margin-bottom: 35px;
    padding: 18px 30px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        linear-gradient(90deg, #00ffff, #007bff); /* Fundo com gradiente interno sutil */
    background-size: cover, 200% 100%; /* Permite animação de background */
    border-radius: 20px;
    border: 4px solid #C1F0F8; /* Borda mais grossa e marcante */
    box-shadow: 
        0 0 25px rgba(193, 240, 248, 0.6), /* Brilho mais forte */
        inset 0 0 10px rgba(193, 240, 248, 0.2);
    text-shadow: 0 0 15px rgba(193, 240, 248, 0.8); /* Brilho do texto intenso */
    animation: slideInFromBottom 1s ease-out, backgroundShift 15s infinite linear; /* Nova animação de background */
    display: inline-block; /* Ajusta o padding ao redor do texto */
     margin: 0 auto;
     text-align: center;
     align-items: center;
}

.conteudo-texto {
    font-size: 1.15rem; /* Fonte ligeiramente maior */
    line-height: 1.8;
    color: #f0f0f0;
    margin: 25px auto; /* Centraliza o bloco */
    text-align: center; /* Centraliza o texto */
    max-width: 900px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5); /* Sombra para profundidade */
    animation: fadeIn 1.5s ease-out;
}

.conteudo-lista {
    margin: 30px auto;
    padding-left: 0; /* Remove padding padrão do ul/ol */
    list-style: none; /* Remove marcadores padrão */
    max-width: 900px;
}

.conteudo-lista li {
    margin-bottom: 18px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border-left: 5px solid #66ffff; /* Borda lateral mais grossa e ciano */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: left; /* Mantém o texto da lista alinhado à esquerda */
    color: #e8e8e8;
}

.conteudo-lista li::before {
    content: '>>'; /* Marcador mais decorativo */
    color: #C1F0F8;
    font-weight: bold;
    margin-right: 10px;
    opacity: 0.8;
}

.conteudo-lista li:hover {
    background: rgba(193, 240, 248, 0.15); /* Fundo de hover mais visível */
    transform: translateX(10px) scale(1.01); /* Efeito de deslizamento e leve aumento */
    box-shadow: 0 0 15px rgba(193, 240, 248, 0.4);
}

.destaque {
    color: #FFFFFF; /* Cor base para melhor contraste com o gradiente */
    font-weight: bold;
    background: linear-gradient(to right, #66ffff, #d6feff, #FFFFFF); /* Gradiente mais intenso */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(102, 255, 255, 0.8); /* Brilho adicional para o destaque */
    animation: fadeIn 1s ease-in;
    display: inline; /* Necessário para aplicar o gradiente corretamente */
}

/* ================================================= */
/* GRID DE IMAGENS - ESTILO DO CARROSSEL (DECORADO) */
/* ================================================= */
.imagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Min-width ligeiramente maior */
    gap: 30px; /* Espaçamento maior */
    margin: 50px 0;
}

.imagem-item {
    position: relative;
    border-radius: 20px; /* Mais arredondado */
    overflow: hidden;
    box-shadow: 0 0 25px rgba(193, 240, 248, 0.4); /* Sombra mais forte */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 16/9;
    border: 3px solid rgba(193, 240, 248, 0.3);
}

.imagem-item:hover {
    transform: translateY(-15px) rotateZ(1deg); /* Efeito mais dramático */
    box-shadow: 0 10px 40px rgba(193, 240, 248, 0.7);
    border-color: #66ffff;
}

.imagem-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imagem-item:hover img {
    transform: scale(1.1); /* Zoom maior no hover */
}

.legenda-imagem {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgb(0, 0, 0)); /* Gradiente mais escuro */
    color: #D6FEFF;
    border-radius: 20px;
    padding: 20px 15px; /* Mais padding */
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(193, 240, 248, 0.5);
}

/* ================================================= */
/* CARDS DE CLASSE - ESTILO DO CONTAINER DE CARDS (DECORADO) */
/* ================================================= */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Min-width ligeiramente maior */
    gap: 30px;
    margin: 50px 0;
}

.classe-card {
    background: linear-gradient(145deg, #101010, #000);
    border-radius: 20px;
    padding: 30px; /* Mais preenchimento */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(193, 240, 248, 0.4);
    border: 3px solid rgba(193, 240, 248, 0.4); /* Borda mais forte */
    position: relative;
    overflow: hidden;
}

.classe-card:hover {
    transform: translateY(-12px) rotateX(2deg); /* Efeito 3D sutil no hover */
    box-shadow: 0 0 35px rgba(193, 240, 248, 0.8), inset 0 0 10px rgba(193, 240, 248, 0.3);
    border-color: #66ffff;
}

.classe-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%; /* Posição inicial ajustada */
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(193, 240, 248, 0.2), transparent);
    transform: skewX(-30deg); /* Inclinação maior */
    transition: left 0.8s ease-in-out; /* Transição mais lenta */
}

.classe-card:hover::before {
    left: 180%; /* Deslocamento maior para o brilho */
}

.classe-nome {
    font-size: 1.6rem; /* Título maior */
    color: #66ffff; /* Cor ciano mais intensa */
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(102, 255, 255, 0.8); /* Brilho mais forte */
}

.classe-descricao {
    font-size: 1.05rem;
    color: #e8e8e8;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ================================================= */
/* EXEMPLOS DE MECÂNICAS (DECORADO) */
/* ================================================= */
.mecanicas-exemplos {
    background: rgba(0, 0, 0, 0.6); /* Fundo mais escuro */
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid #66ffff; /* Borda ciano mais grossa */
    box-shadow: 0 0 15px rgba(193, 240, 248, 0.3);
    animation: slideInFromBottom 1s ease-out;
}

.exemplo-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(193, 240, 248, 0.08); /* Fundo mais visível */
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(193, 240, 248, 0.2);
}

.exemplo-item:hover {
    background: rgba(193, 240, 248, 0.2);
    transform: translateX(8px); /* Deslizamento maior */
    box-shadow: inset 0 0 10px rgba(193, 240, 248, 0.3);
}

/* ================================================= */
/* FOOTER (DECORADO) */
/* ================================================= */
.footer-regras {
    text-align: center;
    padding: 45px;
    color: #c1f0f8; /* Cor ciano */
    font-size: 1rem;
    background: linear-gradient(145deg, #050505, #000);
    border-top: 3px solid #66ffff; /* Borda ciano mais forte */
    margin-top: 60px;
    text-shadow: 0 0 5px rgba(193, 240, 248, 0.5);
    animation: fadeIn 2s ease-out;
}

/* ================================================= */
/* RESPONSIVIDADE (AJUSTADA) */
/* ================================================= */
@media (max-width: 768px) {
    /* ... (outras regras de responsividade mantidas ou ligeiramente ajustadas) */
    .regras-section {
        margin: 30px 15px;
        padding: 20px;
    }

    .section-titulo {
        font-size: 2rem;
        padding: 15px 25px;
    }

    .conteudo-texto {
        font-size: 1.05rem;
        text-align: left; /* Alinhamento à esquerda em mobile para melhor leitura */
    }

    .conteudo-lista li {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .section-titulo {
        font-size: 1.6rem;
        padding: 10px 20px;
    }
}

/* ================================================= */
/* NOVAS ANIMAÇÕES E KEYFRAMES */
/* ================================================= */
@keyframes pulseGlowCyan {
    0% { box-shadow: 0 0 10px rgba(193, 240, 248, 0.4), 0 0 25px rgba(193, 240, 248, 0.1); }
    100% { box-shadow: 0 0 20px rgba(193, 240, 248, 0.6), 0 0 40px rgba(193, 240, 248, 0.2); }
}

@keyframes slideInFromBottom {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes backgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dangerPulse {
    0% { box-shadow: 0 0 25px rgba(244, 67, 54, 0.3); }
    50% { box-shadow: 0 0 40px rgba(244, 67, 54, 0.7); }
    100% { box-shadow: 0 0 25px rgba(244, 67, 54, 0.3); }
}

/* ================================================= */
/* SEÇÕES DE CONTEÚDO - ESTILO DO ARK (DECORADO) */
/* ================================================= */
.regras-section {
    max-width: 1200px;
    margin: 60px auto;
    background: linear-gradient(145deg, #0a0a0a, #000);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid rgba(156, 240, 255, 0.8);
    box-shadow: 
        0 0 35px rgba(193, 240, 248, 0.5),
        inset 0 0 15px rgba(193, 240, 248, 0.1);
    animation: fadeInUp 0.8s ease-out, pulseGlowCyan 4s infinite alternate;
    position: relative;
    overflow: hidden;
}

.regras-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(156, 240, 255, 0.2), transparent);
    z-index: 1;
    pointer-events: none;
}

.section-titulo {
    font-size: 2.5rem;
    color: #D6FEFF;
    text-align: center;
    margin-bottom: 35px;
    padding: 18px 30px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        linear-gradient(90deg, #00ffff, #007bff);
    background-size: cover, 200% 100%;
    border-radius: 20px;
    border: 4px solid #C1F0F8;
    box-shadow: 
        0 0 25px rgba(193, 240, 248, 0.6),
        inset 0 0 10px rgba(193, 240, 248, 0.2);
    text-shadow: 0 0 15px rgba(193, 240, 248, 0.8);
    animation: slideInFromBottom 1s ease-out, backgroundShift 15s infinite linear;
    display: inline-block;
}

.conteudo-texto {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin: 25px auto;
    text-align: center;
    max-width: 900px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out;
}

.conteudo-lista {
    margin: 30px auto;
    padding-left: 0;
    list-style: none;
    max-width: 900px;
}

.conteudo-lista li {
    margin-bottom: 18px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border-left: 5px solid #66ffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: left;
    color: #e8e8e8;
}

.conteudo-lista li::before {
    content: '>>';
    color: #C1F0F8;
    font-weight: bold;
    margin-right: 10px;
    opacity: 0.8;
}

.conteudo-lista li:hover {
    background: rgba(193, 240, 248, 0.15);
    transform: translateX(10px) scale(1.01);
    box-shadow: 0 0 15px rgba(193, 240, 248, 0.4);
}

.destaque {
    color: #FFFFFF;
    font-weight: bold;
    background: linear-gradient(to right, #66ffff, #d6feff, #FFFFFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(102, 255, 255, 0.8);
    animation: fadeIn 1s ease-in;
    display: inline;
}

/* ================================================= */
/* GRID DE IMAGENS - ESTILO DO CARROSSEL */
/* ================================================= */
.imagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.imagem-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(193, 240, 248, 0.4);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 16/9;
    border: 3px solid rgba(193, 240, 248, 0.3);
}

.imagem-item:hover {
    transform: translateY(-15px) rotateZ(1deg);
    box-shadow: 0 10px 40px rgba(193, 240, 248, 0.7);
    border-color: #66ffff;
}

.imagem-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imagem-item:hover img {
    transform: scale(1.1);
}

.legenda-imagem {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #D6FEFF;
    padding: 20px 15px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(193, 240, 248, 0.5);
}

/* ================================================= */
/* CARDS DE CLASSE - ESTILO DO CONTAINER DE CARDS */
/* ================================================= */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.classe-card {
    background: linear-gradient(145deg, #101010, #000);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(193, 240, 248, 0.4);
    border: 3px solid rgba(193, 240, 248, 0.4);
    position: relative;
    overflow: hidden;
}

.classe-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 0 35px rgba(193, 240, 248, 0.8), inset 0 0 10px rgba(193, 240, 248, 0.3);
    border-color: #66ffff;
}

.classe-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(193, 240, 248, 0.2), transparent);
    transform: skewX(-30deg);
    transition: left 0.8s ease-in-out;
}

.classe-card:hover::before {
    left: 180%;
}

.classe-nome {
    font-size: 1.6rem;
    color: #66ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(102, 255, 255, 0.8);
}

.classe-descricao {
    font-size: 1.05rem;
    color: #e8e8e8;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ================================================= */
/* EXEMPLOS DE MECÂNICAS (Bloco de Cena) */
/* ================================================= */
.mecanicas-exemplos {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid #66ffff;
    box-shadow: 0 0 15px rgba(193, 240, 248, 0.3);
    animation: slideInFromBottom 1s ease-out;
}

.exemplo-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(193, 240, 248, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(193, 240, 248, 0.2);
}

.exemplo-item:hover {
    background: rgba(193, 240, 248, 0.2);
    transform: translateX(8px);
    box-shadow: inset 0 0 10px rgba(193, 240, 248, 0.3);
}

/* ================================================= */
/* CONFIGURAÇÃO DE DIFICULDADE (ÍCONES E BARRAS - MODIFICADO) */
/* ================================================= */
/* CONTAINER DE DIFICULDADES */
.dificuldades-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* CARDS DE DIFICULDADE */
.dificuldade-card {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid;
    box-shadow: 0 0 25px rgba(193, 240, 248, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.dificuldade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px;
}

.dificuldade-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease-in-out;
}

.dificuldade-card:hover::before {
    left: 150%;
}

/* CORES E ÍCONES ESPECÍFICOS PARA CADA DIFICULDADE */
.normal {
    border-color: #a0eea3;
    box-shadow: 0 0 25px rgba(136, 202, 138, 0.3);
}
.normal:hover {
    box-shadow: 0 0 35px rgba(76, 175, 80, 0.6);
}

.diabolica {
    border-color: #fcd294;
    box-shadow: 0 0 25px rgba(241, 183, 96, 0.3);
}
.diabolica:hover {
    box-shadow: 0 0 35px rgba(255, 152, 0, 0.6);
}

.caveira {
    border-color: #fd7970;
    box-shadow: 0 0 25px rgba(244, 67, 54, 0.3);
    animation: dangerPulse 3s infinite;
}
.caveira:hover {
    box-shadow: 0 0 35px rgba(244, 67, 54, 0.8);
}

/* HEADER DOS CARDS */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid;
}

/* ÍCONE PERSONALIZADO (IMAGEM) */
.dificuldade-icon {
    width: 90px;
    height: 90px;
    display: block;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 10px rgba(193, 240, 248, 0.5);
}

/* DEFINIÇÃO DAS IMAGENS DOS ÍCONES */
.normal .dificuldade-icon { 
    background-image: url('../imagens/Icone_companherismo.png'); /* <-- SUBSTITUA A URL */
    border: 3px solid #b0f8b3;
    background-color: rgba(146, 243, 150, 0.2);
}
.diabolica .dificuldade-icon { 
    background-image: url('../imagens/icone_ataque.png'); /* <-- SUBSTITUA A URL */
    border: 3px solid #f5ce94;
    background-color: rgba(255, 152, 0, 0.2); 
}
.caveira .dificuldade-icon { 
    background-image: url('../imagens/Icone_Diluvio.png'); /* <-- SUBSTITUA A URL */
    border: 3px solid #fa7a71;
    background-color: rgba(244, 67, 54, 0.2); 
}

.card-title {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(to right, #d6feff, #cecece);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CONTEÚDO DOS CARDS */
.card-content {
    color: #e8e8e8;
    line-height: 1.7;
}

.mecanica-item {
    margin: 15px 0;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.mecanica-item:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.05);
}

.normal .mecanica-item { border-left-color: #4CAF50; }
.diabolica .mecanica-item { border-left-color: #FF9800; }
.caveira .mecanica-item { border-left-color: #f44336; }

.perigo {
    color: #ff6b6b;
    font-weight: bold;
}

/* SANIDADE METER */
.sanidade-container {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    border: 1px solid;
}

.sanidade-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    color: #C1F0F8;
}

.sanidade-meter {
    height: 38px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

/* PREENCHIMENTO DA BARRA COM FUNDO DE CRISTAL E OVERLAY DE COR */
.sanidade-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
    
    /* FUNDO DE CRISTAL */
    background-image: url('../imagens/fundo_rubi.jpg'); /* <-- SUBSTITUA A URL */
    background-size: auto 100%; 
    background-repeat: repeat-x;
    
    /* Efeito de profundidade/brilho */
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 0 5px #ff0e0e;
}

/* Overlay de cor sobre o cristal */
.sanidade-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6; /* Transparência para ver o cristal */
    border-radius: 10px;
}



.sanidade-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #aaa;
}



/* ================================================= */
/* FOOTER */
/* ================================================= */
.footer-regras {
    text-align: center;
    padding: 45px;
    color: #c1f0f8;
    font-size: 1rem;
    background: linear-gradient(145deg, #050505, #000);
    border-top: 3px solid #66ffff;
    margin-top: 60px;
    text-shadow: 0 0 5px rgba(193, 240, 248, 0.5);
    animation: fadeIn 2s ease-out;
}

/* ================================================= */
/* RESPONSIVIDADE */
/* ================================================= */
@media (max-width: 768px) {
    .titulo_efeito {
        font-size: 2.5rem;
        padding: 20px 30px;
        max-width: 90%;
        margin: 0 20px;
    }
    
    .regras-section {
        margin: 30px 15px;
        padding: 20px;
    }

    .section-titulo {
        font-size: 2rem;
        padding: 15px 25px;
    }

    .conteudo-texto {
        font-size: 1.05rem;
        text-align: left;
    }
    
    .conteudo-lista li {
        padding: 12px 15px;
    }

    .imagens-grid {
        grid-template-columns: 1fr;
    }

    .classes-grid {
        grid-template-columns: 1fr;
    }
    
    .dificuldades-container {
        grid-template-columns: 1fr;
        margin: 40px 20px;
    }

    .dificuldade-card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .titulo_efeito {
        font-size: 2rem;
        padding: 15px 20px;
    }

    .section-titulo {
        font-size: 1.6rem;
        padding: 10px 20px;
    }

    .classe-card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .dificuldade-icon {
        width: 50px;
        height: 50px;
    }
}

/* ================================================= */
/* SISTEMA DE EVOLUÇÃO/ERAS (ESTILO DARK/CIANO CORRIGIDO) */
/* ================================================= */

/* Contêiner de Seção Principal - Inspirado em .ficha-container */
.secao-evolucao-ark {
    max-width: 1100px;
    margin: 50px auto;
    /* Fundo escuro com gradiente e borda ciano */
    border: 2px solid rgba(195, 246, 255, 0.5); /* Borda mais forte */
    border-radius: 15px;
    background: linear-gradient(145deg, #1a1a1a, #000);
    box-shadow: 0 0 15px rgba(193, 240, 248, 0.411);
    padding: 30px;
    position: relative;
    z-index: 1; 
}

/* Título da Seção - Gradiente Ciano */
.titulo-secao-ark {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    padding: 15px 25px;
    border-bottom: 3px solid rgba(156, 240, 255, 0.5);
    background: linear-gradient(to right, #d6feff, #cecece);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(199, 244, 255, 0.5);
}

.eras-progress-container-ark {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Base do Container de Cada Era - Corrigido para carregar fundo e garantir contraste */
.era-container-ark {
    /* Fundo com imagem de rubi/branco (manter apenas a camada escura para legibilidade) */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)); /* Fundo mais escuro para garantir legibilidade */
    background-size: cover; 
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid;
    box-shadow: 0 0 10px rgba(193, 240, 248, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(156, 240, 255, 0.2);
}

.era-container-ark:hover {
    box-shadow: 0 0 20px rgba(193, 240, 248, 0.411);
    transform: translateY(-2px);
}

/* Cores das Bordas */
.era-pedra-ark { border-left-color: #9c9c9c; } 
.era-ferro-ark { border-left-color: #aa6600; } 
.era-aço-ark { border-left-color: #b1ffff; } 

/* Header da Era */
.era-header-ark {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(156, 240, 255, 0.2);
}

/* Contêiner do Ícone - Mantido em 65px */
.era-icon-ark {
    width: 65px; /* Tamanho padronizado */
    height: 65px;
    border-radius: 50%;
    margin-right: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
   
}

.era-icon-ark img {
    /* CORREÇÃO: AUMENTADO PARA PREENCHER MAIS O CÍRCULO */
    width: 55px;  /* De 40px para 55px */
    height: 55px; /* De 40px para 55px */
    
    /* CORREÇÃO: Garantir que a imagem inteira apareça sem cortar */
    object-fit: contain; 
    
 
}

.era-title-ark {
    font-size: 1.6rem; /* Aumentado um pouco o tamanho */
    background: linear-gradient(to right, #d6feff, #cecece);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(199, 244, 255, 0.5);
}

/* Corpo do Conteúdo - CORRIGIDO: Cor do Texto e Fundo */
.era-prose-ark {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    /* Removido o background preto sobre preto. Agora herda do container ou usa um fundo muito sutil. */
    background: rgba(0, 0, 0, 0.3); /* Fundo sutil para destacar do container principal da era */
    color: #e0e0e0; /* CORREÇÃO CRUCIAL: Texto claro */
    border-left: 2px solid rgba(156, 240, 255, 0.3);
}

/* Blocos de Mecânica/Regra - CORRIGIDO: Cor do Texto */
.content-block-ark {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    background: linear-gradient(145deg, #1a1a1a, #000); 
    border: 1px solid rgba(156, 240, 255, 0.3);
    box-shadow: 0 0 10px rgba(193, 240, 248, 0.2);
    transition: box-shadow 0.3s;
    color: #cccccc; /* CORREÇÃO: Cor do texto interno */
}

.content-block-ark p {
    color: #cccccc; /* CORREÇÃO: Parágrafos dentro do bloco */
    margin-bottom: 5px;
}

.content-block-ark:hover {
    box-shadow: 0 0 15px rgba(193, 240, 248, 0.6);
}

.content-block-ark h4 {
    font-size: 1.1rem;
    color: #cdeefc; /* Ciano claro */
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    text-shadow: 0 0 5px rgba(199, 244, 255, 0.3);
}

/* ... (Mecanica Bullet, Destaques, Bloco Risco permanecem) ... */

/* Lista de Mecânica */
.lista-mecanica-ark {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.lista-mecanica-ark li {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 1px solid rgba(156, 240, 255, 0.3);
    padding: 8px 12px;
    color: #d1f7fa;
    border-radius: 5px;
    margin-bottom: 8px;
    box-shadow: 0 0 5px rgba(193, 240, 248, 0.3);
}

/* Separador de Progresso */
.era-separator-ark {
    text-align: center;
    margin: 10px 0;
    position: relative;
}

.era-separator-ark::before, .era-separator-ark::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #333; 
    opacity: 0.8;
}

.era-separator-ark::before { left: 0; }
.era-separator-ark::after { right: 0; }

.separator-text-ark {
    background: #1a1a1a;
    padding: 0 15px;
    color: #66ffff;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(102, 255, 255, 1);
}

/* Responsividade Básica */
@media (max-width: 768px) {
    .secao-evolucao-ark {
        padding: 20px;
        max-width: 95%;
    }
    .titulo-secao-ark {
        font-size: 1.8rem;
    }
    .era-title-ark {
        font-size: 1.4rem;
    }
}

  .ark-actions-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #1a1a1abd;
        color: #b1fff5;
        padding: 2rem 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(107, 235, 240, 0.226);
        margin: 2rem 0;
       
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: #96fff6;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #c8d6e5;
        font-style: italic;
    }
    
    /* Filtros */
    .filter-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 1.5rem;
        gap: 1rem;
        
    }
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 20px;
        background: #121213;
        color: #d6faff;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .filter-btn:hover {
        background: #8f03b9;
        transform: translateY(-2px);
    }
    
    .filter-btn.active {
        background: #18dae0;
        color: #000;
    }
    
    .search-box {
        position: relative;
        min-width: 250px;
       
    }
    
    #action-search {
        width: 100%;
        padding: 0.5rem 2.5rem 0.5rem 1rem;
        border-radius: 20px;
        border: 2px solid #90c1f1;
        background: #0b0c0c;
        color: #97efff;
        font-size: 1rem;
    }
    
    .search-icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #7eaaf8;
    }
    
    /* Tabela */
    .table-responsive {
        overflow-x: auto;
        border-radius: 8px;
        background: rgba(13, 13, 14, 0.897);
        margin-bottom: 2rem;
        box-shadow: 0 4px 15px rgba(94, 153, 153, 0.3);
         border: 2px solid rgb(149, 252, 252);
    }
    
    .actions-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 800px;
    }
    
    .actions-table thead {
        background: #7c0a9e;
    }
    
    .actions-table th {
        padding: 1rem;
        text-align: left;
        font-weight: 700;
        color: #aef7fa;
        border-bottom: 2px solid #7cf8e8;
    }
    
    .actions-table tbody tr {
        border-bottom: 1px solid #800bce;
        transition: background 0.3s ease;
    }
    
    .actions-table tbody tr:hover {
        background: rgba(74, 105, 189, 0.2);
        cursor: pointer;
    }
    
    .actions-table td {
        padding: 1rem;
    }
    
    .col-name {
        font-weight: 600;
        color: #8dfffd;
    }
    
    .col-category {
        width: 150px;
    }
    
    .col-type {
        width: 150px;
    }
    
    .category-badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .category-defesas {
        background: #920ab4;
        color: #fffdfd;
    }
    
    .category-combate {
        background: #920ab4;
        color: #fffdfd;
    }
    
    .category-mecanico {
       background: #920ab4;
        color: #fffdfd;
    }
    
    .category-tipos {
         background: #920ab4;
        color: #fffdfd;
    }
    
    .type-badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 12px;
        font-size: 0.85rem;
        font-weight: 600;
        background: #576574;
        color: #f5f5f5;
    }
    
    .type-padrao {
        background: #6d214f;
    }
    
    .type-frenetica {
        background: #6d214f;
    }
    
    .type-reacao {
        background: #6d214f;
    }
    
    .type-passiva {
        background: #6d214f;
    }
    
    .col-details {
        text-align: center;
        width: 120px;
    }
    
    .details-btn {
        padding: 0.4rem 1rem;
        background: transparent;
        border: 1px solid #ff9f43;
        color: #ff9f43;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .details-btn:hover {
        background: #ff9f43;
        color: #000;
    }
    
    /* Modal */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        overflow: auto;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .modal-content {
        background: linear-gradient(135deg, #18191a 0%, #121416 100%);
        margin: 5% auto;
        padding: 0;
        width: 90%;
        max-width: 800px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        animation: slideIn 0.4s ease;
        border: 2px solid #85dcff;
    }
    
    @keyframes slideIn {
        from { transform: translateY(-50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .modal-header {
        padding: 1.5rem;
        background: #262d33;
        border-bottom: 2px solid #89f1f5;
        border-radius: 10px 10px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .modal-header h2 {
        margin: 0;
        color: #cd77ff;
        font-size: 1.8rem;
    }
    
    .close-modal {
        color: #e1e2e2;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .close-modal:hover {
        color: #9410d1;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .info-item {
        margin-bottom: 1rem;
    }
    
    .info-item.full-width {
        grid-column: span 2;
    }
    
    .info-label {
        font-weight: 700;
        color: #9bfcf7;
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .info-value {
        font-weight: 600;
        color: #d6fffd;
    }
    
    .mechanics-content, .notes-content {
        background: rgba(52, 73, 94, 0.5);
        padding: 1rem;
        border-radius: 6px;
        border-left: 4px solid #8900d8;
        margin-top: 0.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
        background: #2c3e50;
        border-top: 1px solid #34495e;
        border-radius: 0 0 10px 10px;
        text-align: right;
    }
    
    .btn-close-modal {
        padding: 0.5rem 1.5rem;
        background: #9603bb;
        color: #ffffff;
        border: none;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-close-modal:hover {
        background: #cc0dbc;
        transform: translateY(-2px);
    }
    
    .valid-action-note {
        background: rgb(3, 3, 3);
        border-left: 4px solid #8fd6ff;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 2rem;
    }
    
    .valid-action-note h3 {
        color: #d0f8f8;
        margin-top: 0;
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
        .modal-info-grid {
            grid-template-columns: 1fr;
        }
        
        .info-item.full-width {
            grid-column: span 1;
        }
        
        .filter-container {
            flex-direction: column;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }
    




/* Geral do footer ------------------------------------------------------------------------------*/
/* Estilo Geral do Footer (Desktop/Default) */
footer {
    background: linear-gradient(145deg, #1a1a1a, #1a1a1a, #000, #1a1a1a, #1a1a1a); /* Seu degradê */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

/* Conteúdo Principal */
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap; /* Allows sections to wrap to the next line on smaller screens */
}

/* Seções do Footer */
.footer-section {
    flex: 1; /* Allows sections to grow and shrink */
    margin: 10px;
    min-width: 250px; /* Ensures sections don't get too small before wrapping */
}

.footer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    background: linear-gradient(45deg, #fbf9fd, #b6fff3);
    background-size: 300%;
    background-clip: text; /* Faz o gradiente ser aplicado ao texto */
    -webkit-text-fill-color: transparent; /* Torna a parte não preenchida transparente */
    animation: gradiente-animado 4s ease infinite;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

@keyframes gradiente-animado {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-section ul li a:hover {
    color: #ff9800;
}

/* Ícones de Redes Sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    border: 2px solid #fff;
    padding: 15px;
    border-radius: 20px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
}

.social-icons a img:hover {
    transform: scale(1.2);
}

/* Rodapé Inferior */
.footer-bottom {
    margin-top: 20px;
    font-size: 0.8rem;
    border-top: 1px solid #444;
    padding: 10px;
}

/* ======================================================= */
/* RESPONSIVENESS */
/* ======================================================= */

/* Para telas de Tablet (max-width: 780px) */
@media (max-width: 780px) {
    footer {
        padding: 15px 0; /* Reduz o padding do footer */
    }

    .footer-content {
        padding: 15px; /* Reduz o padding interno do conteúdo */
        /* Flex-wrap is already set, so sections will wrap if they don't fit */
        justify-content: center; /* Centers sections when they wrap */
    }

    .footer-section {
        margin: 10px; /* Mantém a margem entre as seções */
        min-width: 200px; /* Permite que as seções fiquem um pouco menores antes de empilhar */
        flex-basis: auto; /* Allow items to determine their own flexible basis */
    }

    .footer-section h2 {
        font-size: 1.3rem; /* Reduz o tamanho do título */
    }

    .footer-section p {
        font-size: 0.85rem; /* Reduz o tamanho do texto */
    }

    .footer-section ul li {
        margin: 8px 0; /* Reduz a margem dos itens da lista */
    }

    .social-icons {
        gap: 10px; /* Reduz o espaçamento entre os ícones */
        padding: 10px; /* Reduz o padding do container de ícones */
    }

    .social-icons a img {
        width: 25px; /* Reduz o tamanho dos ícones */
        height: 25px;
    }

    .footer-bottom {
        margin-top: 15px;
        font-size: 0.75rem; /* Reduz o tamanho da fonte do rodapé inferior */
        padding: 8px;
    }
}

/* Para telas de Celular (max-width: 480px - ajuste conforme necessário) */
@media (max-width: 480px) {
    footer {
        padding: 10px 0; /* Mais redução de padding */
    }

    .footer-content {
        flex-direction: column; /* Força as seções a empilharem verticalmente */
        padding: 10px;
        align-items: center; /* Centraliza as seções empilhadas */
    }

    .footer-section {
        margin: 15px 0; /* Aumenta a margem vertical entre as seções empilhadas */
        width: 90%; /* Ocupa quase toda a largura para cada seção */
        min-width: unset; /* Remove o min-width para permitir que ocupe a largura total disponível */
    }

    .footer-section h2 {
        font-size: 1.2rem; /* Mais redução de tamanho de título */
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.8rem; /* Mais redução de tamanho de texto */
    }

    .footer-section ul {
        text-align: center; /* Centraliza os links quando as seções empilham */
    }

    .footer-section ul li {
        margin: 6px 0;
    }

    .social-icons {
        gap: 8px; /* Última redução de espaçamento */
        padding: 8px;
    }

    .social-icons a img {
        width: 20px; /* Última redução de tamanho de ícones */
        height: 20px;
    }

    .footer-bottom {
        margin-top: 10px;
        font-size: 0.7rem;
        padding: 5px;
    }
}