/* ============================= */
/*          ESTILOS GERAIS      */
/* ============================= */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Arial", sans-serif;
    color: #ddd;
    min-height: 100vh;
    cursor: none;
    background: linear-gradient(120deg, #000000, #1a1a1a, #000000, #1a1a1a, #000000);
    background-size: 800% 800%;
    animation: gradientAnim 50s linear infinite alternate;
}

a {
    text-decoration: none;
}

/* Cursor personalizado */
body {
    cursor: url("/assets/Hornet-normal.ani"), auto
}

a {
    cursor: url("/assets/Hornet-alt.ani"), pointer;
}

input,
textarea {
    cursor: url("Hornet text.cur"), text;
}

/* ============================= */
/*          HEADER               */
/* ============================= */
header {
    background: #0a0a0a;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 79, 79, 0.2);
    border-bottom: 1px solid #330000;
}

header img.neon-img.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 6px #ff4f4f);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

header img.neon-img.logo:hover {
    filter: drop-shadow(0 0 12px #ff6b6b);
    transform: scale(1.05);
}

/* ============================= */
/*          NAVBAR               */
/* ============================= */
.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu>li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 12px;
    transition: 0.3s;
}

.menu a:hover {
    color: #ff4f4f;
    text-shadow: 0 0 5px #ff4f4f;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid #ff4f4f;
    border-radius: 6px;
    min-width: 160px;
    list-style: none;
    padding: 8px 0;
    z-index: 10;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #ddd;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #ff4f4f22;
    color: #ff4f4f;
    text-shadow: 0 0 5px #ff4f4f;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ============================= */
/*          GRUPO DE BOTÕES      */
/* ============================= */
.juncao-botao {
    display: flex;
    align-items: center;
    gap: 15px;
}

.juncao-botao button#btnLogin {
    background: transparent;
    border: 2px solid #ff4f4f;
    padding: 8px 18px;
    border-radius: 25px;
    color: #ff4f4f;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.juncao-botao button#btnLogin:hover {
    background: #ff4f4f;
    color: #fff;
    box-shadow: 0 0 8px #ff4f4f;
}

.juncao-botao button#btnLogin a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.buton-hornet {
    display: flex;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.buton-hornet img.icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 6px #ff4f4f);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* ============================= */
/*          PESQUISA             */
/* ============================= */

.search-box {
            margin: 20px;
            text-align: center;
        }
        input {
            padding: 10px;
            width: 300px;
            border-radius: 8px;
            border: none;
        }
        .results {
            margin-top: 20px;
            text-align: center;
        }
        .results a {
            display: block;
            margin: 8px 0;
            padding: 10px;
            background: #222;
            border-radius: 8px;
            color: #fff;
            text-decoration: none;
            transition: background 0.3s;
        }
        .results a:hover {
            background: #444;
        }
.uniao-menu-pesquisa{
    display: flex;
}

/* ============================= */
/*          ESTILIZAÇÃO H1       */
/* ============================= */
h1,h2 {
    font-family: "Georgia", serif;
    font-size: 2.5rem;
    color: white;
    /* Vermelho vibrante */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-top: 50px;

    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(139, 0, 0, 0.3));
}

/* ============================= */
/*          BANNER               */
/* ============================= */
.banner1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 80px;
    flex-direction: column;
}


.banner-img img {
    width: 300px;
    height: auto;
    animation: glowImg 6s ease-in-out infinite;
    border-radius: 12px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(139, 0, 0, 0.3));

}


.banner-img img:hover {
    transform: scale(1.02);
}

.banner-texto {
    max-width: 1200px;
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    padding: 0px 20px;
    border-radius: 12px;
    display: flex
;
    gap: 100px;
}

.banner-texto p strong {
    color: #e94560;
    font-weight: bold;
}

.banner-texto .intro {
    font-size: 1.2rem;
    text-align: justify;
    font-weight: 400;
}

.banner-texto ul.descricao-missao {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.banner-texto ul.descricao-missao li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #ff4f4f;
    text-shadow: 0 0 8px rgba(255, 79, 79, 0.5);
}

/* ============================= */
/*          texto main           */
/* ============================= */

.texto-main {
    margin: auto;
    max-width: 80%;
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    padding: 20px;
    border-radius: 12px;
}

.linha {
    width: 800px;
    margin: auto;
    display: flex;
}

/* ============================= */
/*            Tabela             */
/* ============================= */


.slot-icon {
    width: 24px;  /* tamanho menor para ícones na tabela */
    height: 24px;
    object-fit: contain; /* garante que não estique */
}

.tabela-slots {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(255, 79, 79, 0.05);
    border: 1px solid rgba(255, 79, 79, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.tabela-slots th,
.tabela-slots td {
    padding: 12px 16px;
    text-align: center;
    font-size: 1rem;
    color: #f1f1f1;
}

.tabela-slots th {
    background: rgba(255, 79, 79, 0.3);
    font-weight: bold;
    letter-spacing: 1px;
}

.tabela-slots tr:nth-child(even) {
    background: rgba(255, 79, 79, 0.08);
}

.tabela-slots tr:hover {
    background: rgba(255, 79, 79, 0.2);
    transition: 0.3s ease;
}

.juncao {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px; /* aumentei o espaçamento entre tabela e texto */
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 20px;
  color: #ddd;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.juncao h2 {
    width: 100%;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 6px #ff4f4f88;
    flex-basis: 100%;
}

.content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  justify-content: space-evenly;
  align-items: flex-start;
}
.lista-silksong {
  list-style: none;
  padding: 20px;
  margin: 0;
  max-width: 500px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f1f1f1;
  background: rgba(255, 79, 79, 0.05);
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 79, 79, 0.1);
  text-shadow: 0 0 6px #111;
}

.lista-silksong li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.lista-silksong li::before {
  content: "✦";
  color: #ff4f4f;
  position: absolute;
  left: 0;
  margin-right: 10px;
}


.tabela-slots {
  width: 500px; /* tabela maior */
  font-size: 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 79, 79, 0.5);
  box-shadow: 0 0 15px rgba(255, 79, 79, 0.15);
  background: rgba(255, 79, 79, 0.07);
  overflow: hidden;
}

.tabela-slots th,
.tabela-slots td {
  padding: 16px 24px;
  color: #f1f1f1;
}

.tabela-slots th {
    background: rgba(255, 79, 79, 0.35);
}

.tabela-slots tr:nth-child(even) {
    background: rgba(255, 79, 79, 0.1);
}

.tabela-slots tr:hover {
    background: rgba(255, 79, 79, 0.25);
    transition: background 0.3s ease;
}

.slot-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 10px;
}

.conteudo-sec{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.iframe-silksong {
  width: 400px;
  height: 300px;
  border: 1px solid rgba(255, 79, 79, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 79, 79, 0.1);
  background-color: rgba(255, 79, 79, 0.07);
  margin-top: 20px;
}
.tabela-com-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}






/* ============================= */
/*          Footer               */
/* ============================= */


.hollow-footer {
    background: linear-gradient(to top, #0b0c10, #14151c);
    padding: 40px 20px;
    text-align: center;
    color: #aaa;
    font-family: "Georgia", serif;
    box-shadow: inset 0 0 20px #0008;
    border-top: 1px solid #333;
    animation: fadeIn 1s ease;
}

.hollow-footer .footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hollow-footer p {
    font-size: 1em;
    color: #bbb;
    text-shadow: 0 0 6px #111;
}

.footer-icons {
    display: flex;
    gap: 20px;
}

.footer-icons a img {
    width: 28px;
    height: 28px;
    filter: grayscale(1) brightness(0.8) drop-shadow(0 0 6px #7af2);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-icons a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2) drop-shadow(0 0 12px #7af);
}

@keyframes glowImg {
    0% {
        filter: drop-shadow(0 0 4px #ff2e2e) drop-shadow(0 0 10px #330000) drop-shadow(0 0 15px #ff5555);
    }

    25% {
        filter: drop-shadow(0 0 6px #ff3e3e) drop-shadow(0 0 12px #440000) drop-shadow(0 0 18px #ff6666);
    }

    50% {
        filter: drop-shadow(0 0 12px #ff4f4f) drop-shadow(0 0 15px #550000) drop-shadow(0 0 20px #ff7777);
    }

    75% {
        filter: drop-shadow(0 0 6px #ff3e3e) drop-shadow(0 0 12px #440000) drop-shadow(0 0 18px #ff6666);
    }

    100% {
        filter: drop-shadow(0 0 4px #ff2e2e) drop-shadow(0 0 10px #330000) drop-shadow(0 0 15px #ff5555);
    }
}