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

a {
    text-decoration: none;
    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;
    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 {
    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 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;
}

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

#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;
    cursor: pointer;
}

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

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

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

.buton-hornet img.icon:hover {
    transform: scale(1.05);
}

/* ============================= */
/*          PESQUISA             */
/* ============================= */
.search-box {
    margin: 20px;
    text-align: center;
}

.search-box 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;
    transition: background 0.3s;
}

.results a:hover {
    background: #444;
}

.uniao-menu-pesquisa {
    display: flex;
}

/* ============================= */
/*          H1                   */
/* ============================= */
h1 {
    font-family: "Georgia", serif;
    font-size: 2.5rem;
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin: 50px 0 20px;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4)) 
            drop-shadow(0 0 15px rgba(139, 0, 0, 0.3));
}

/* ============================= */
/*          SEÇÃO 1              */
/* ============================= */
.sec1 {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.texteeimg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.texteeimg img {
   width: 850px;
}

/* ============================= */
/*          CATEGORIAS           */
/* ============================= */
.item-categories {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.item-category {
    text-align: center;
    cursor: pointer;
    padding: 10px;
    width: 150px;
    height: 150px;
    transition: transform 0.3s ease;
    border: 1px solid white;
}

.item-category img {
    width: 50px;
    height: 50px;
}

.item-category p {
    margin-top: 10px;
    font-size: 1rem;
}

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

.item-category.active {
    background: #f4a261;
    border-radius: 5px;
    padding: 12px;
}

/* ============================= */
/*          GRID DE ITENS        */
/* ============================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
}

.item {
    background: #222;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.item:hover {
    background: #333;
    transform: scale(1.05);
}

.item img {
    width: 70px;
    margin-bottom: 10px;
}

/* ============================= */
/*          MODAL                */
/* ============================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-content img {
    width: 120px;
    margin-bottom: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #ff5555;
}

/* ============================= */
/*          LISTA                */
/* ============================= */
.lista-de-ferramentas ul {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lista-de-ferramentas li {
    display: flex;
    gap: 15px;
    background: #111;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 79, 79, 0.2);
}

.lista-de-ferramentas img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 5px;
}

.lista-de-ferramentas p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.lista-de-ferramentas strong {
    color: #ff4f4f;
}

/* ============================= */
/*          TEXTO MAIN           */
/* ============================= */
.texto-main {
    max-width: 600px;
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    padding: 20px;
    border-radius: 12px;
}

/* ============================= */
/*          SKILLS               */
/* ============================= */
.skils {
    display: flex;
    flex-direction: column;
}

.habilidade01 {
    display: flex;
    flex-direction: column;
}

.habilidade01 img {
    width: 400px;
    margin: auto;
}

/* ============================= */
/*          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);
}

/* ============================= */
/*          TIMELINE             */
/* ============================= */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
}

.timeline-item {
    display: flex;
    justify-content: center;
}

.timeline-content {
    background: #111;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 79, 79, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255, 79, 79, 0.5);
}

.timeline-content img {
    max-width: 180px;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px); /* fundo fosco */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #1a1a1a;
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #ff4f4f;
  transition: 0.3s;
}

.close:hover {
  color: #ff7777;
  transform: rotate(90deg);
}
.hamburguer {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #ff4f4f;
    cursor: pointer;
    margin-left: 10px;
    z-index: 1000;
}