/* ============================= */
/*          ESTILOS MAPAS     */
/* ============================= */
/* ============================= */
/*          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;
}
.mapas {
    padding: 40px 20px;
    color: #f0f0f0;
    text-align: center;
}

.mapas h2 {
    font-size: 2.2rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 8px #700000;
}

.intro-mapas {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mapa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mapa-card {
    background: #121212;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px #70000022;
    transition: transform 0.3s ease;
    animation: glow 4s infinite ease-in-out;
}

.mapa-card:hover {
    transform: scale(1.03);
}

.mapa-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.mapa-card h3 {
    font-size: 1.4rem;
    color: #ff7a7a;
    margin-bottom: 10px;
}

.mapa-card p {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 10px;
}

.mapa-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
    text-align: left;
    color: #ccc;
}

.mapa-card ul li::before {
    content: "🗺️ ";
    margin-right: 6px;
}

/*          ESTILOS cards     */
/* Fundo da aba de mapas */
.map-section {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 40px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Título com efeito glow */
.map-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    margin-bottom: 30px;
}

/* Cards de mapa */
.map-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover nos cards */
.map-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

/* Texto dentro dos cards */
.map-card p {
    font-size: 1.1rem;
    color: #e0f7fa;
    text-shadow: 0 0 5px #00ffff;
}

/* Botões ou links */
.map-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #00ffff;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px #00ffff;
    transition: background 0.3s ease;
}

.map-card a:hover {
    background: #00e6e6;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 4px #444);
    }

    50% {
        filter: drop-shadow(0 0 10px #fff);
    }

    100% {
        filter: drop-shadow(0 0 4px #444);
    }
}

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

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;
}

/* ============================= */
/*          ESTILIZAÇÃO 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;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(139, 0, 0, 0.3));
}

.intro-mapas {
    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;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(139, 0, 0, 0.3));
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes neon-glow-bordo {

    0%,
    100% {
        filter: drop-shadow(0 0 6px #ff4f4f) drop-shadow(0 0 12px #b22222) drop-shadow(0 0 20px #8b0000);
    }

    50% {
        filter: drop-shadow(0 0 10px #ff6b6b) drop-shadow(0 0 18px #dc143c) drop-shadow(0 0 25px #8b0000);
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 4px #444);
    }

    50% {
        filter: drop-shadow(0 0 10px #fff);
    }

    100% {
        filter: drop-shadow(0 0 4px #444);
    }
}

.ato-title {
    grid-column: 1 / -1;
    /* Faz o título ocupar toda a largura do grid */
    font-size: 1.8rem;
    color: #ff7a7a;
    text-align: center;
    margin: 40px 0 20px;
    text-shadow: 0 0 6px #700000;
    animation: glow 4s infinite ease-in-out;
}
.ato-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px #70000022;
    transition: transform 0.3s ease;
    animation: glow 4s infinite ease-in-out;
}
.ato-card:hover {
    transform: scale(1.03);
}
.ato-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
} 
.ato-card h3 {
    font-size: 1.4rem;
    color: #ff7a7a;
    margin-bottom: 10px;
}
.ato-card p {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 10px;
}
.ato-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
    text-align: left;
    color: #ccc;
}
.ato-card ul li::before {
    content: "⚔️ ";
    margin-right: 6px;
}
/* ============================= */
/*          RODAPÉ               */
/* ============================= */
footer {
    background: #0a0a0a;
    color: #bbb;
    text-align: center;
    padding: 20px 40px;
    border-top: 1px solid #330000;
    box-shadow: 0 -4px 15px rgba(255, 79, 79, 0.2);
    margin-top: 40px;
}
footer p {
    margin: 0;
    font-size: 0.9rem;
}
footer a {
    color: #ff4f4f;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 5px #ff6b6b;
}
.hamburguer {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #ff4f4f;
    cursor: pointer;
    margin-left: 10px;
    z-index: 1000;
}

/* ============================= */
/*          Media Querry         */
/* ============================= */

@media(max-width: 1200px) {

    .banner1,
    .banner2 {
        flex-direction: column;

    }

    .banner-img img,
    .bannerimg2 img {
        height: auto;
    }

    .banner-texto {
        max-width: 100%;
        padding: 10px;
        font-size: 1rem;
    }

    .agrupamento,
    .agrupamento1 {

        padding: 2rem 0;
    }


    article {
        flex-direction: column;
        gap: 20px;
    }

    canvas {
        width: 90%;
        height: auto;
    }

    header {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 15px 20px;
    }

    .buton-hornet img.icon {
        display: none;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .intro {
        width: 600px;
    }
}

@media(max-width: 1200px) {

    #linka{
        display: none;
    }

    #linke{
        display: none;
    }
}

@media (max-width: 950px) {
    header {
        display: flex;
        justify-content: space-between;
    }

    header img.neon-img.logo {
        display: none;
    }

    .uniao-menu-pesquisa {
        gap: 80px;
    }

    .hamburguer {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #0a0a0a;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 999;
    }

    .navbar.active {
        display: flex;
    }
}

@media(max-width:800px) {
    #linha {
        width: 500px;
    }

    .intro {
        width: 400px;
    }

    .banner-img img,
    .bannerimg2 img {
        height: 300px;
    }

    h1 {
        font-size: 2em;
        margin-bottom: 0px;
    }
}

@media(max-width:600px) {
    input {
        width: 170px;
    }

    .loader {
        display: none;
    }

    #linha {
        width: 350px;
    }

    .intro {
        width: 300px;
        font-size: 1.2rem;
        font-weight: 100;
    }
    .banner1,
    .banner2{
        padding: 10px 30px;
    }

    .banner-img img,
    .bannerimg2 img {
        height: 200px;
    }

    h1 {
        font-size: 1.5em;
        margin-bottom: 50px;
    }
}
@media(max-width:500px) {
    input {
        width: 115px;
    }

}
/* Botão hamburguer */
.hamburguer {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    position: relative;
}

.hamburguer span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ff4f4f;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Animação X */
.hamburguer.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburguer.active span:nth-child(2) {
    opacity: 0;
}

.hamburguer.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navbar padrão (desktop) */
.navbar {
    display: flex;
    gap: 20px;
}

/* Menu fullscreen no mobile */
@media(max-width: 950px) {
    .navbar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(17, 17, 17, 0.95);
        gap: 30px;
        font-size: 24px;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    .menu {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        justify-content: center;
        text-align: center;
    }

    #linka {
        display: none;
    }

    #linke {
        display: none;
    }

    .navbar a {
        color: #fff;
        text-decoration: none;
        font-size: 26px;
        font-weight: bold;
        transition: color 0.3s;
    }

    .navbar a:hover {
        color: #ff4f4f;
    }

    .navbar.active {
        transform: translateY(0);
    }

    .hamburguer {
        display: flex;
        z-index: 1002;
        /* acima do menu */
    }
}


@media (max-width: 600px) {
  .dropdown-cards {
    width: 100%;
    padding: 10px;
    gap: 10px;
    justify-content: space-around;
  }

  .card-menu {
    width: 28vw;
    padding: 8px;
  }

  .card-menu img {
    width: 28px;
    height: 28px;
  }

  .card-menu span {
    font-size: 0.75rem;
  }
}
/* Container do dropdown */
.dropdown {
    position: relative;
}

/* Botão "Outros" */
.dropdown>a {
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropdown>a:hover {
    color: #ff4f4f;
}

/* Conteúdo do dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

/* Cada link dentro do dropdown */
.dropdown-content a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    border-radius: 6px;
}

.dropdown-content a:hover {
    background: #ff4f4f;
    color: #111;
}


/* ============================= */
/*          FIM DO ARQUIVO      */  
/* ============================= */