/* =========================================================
   CONFIGURAÇÕES GERAIS
   ========================================================= */

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

:root {
    --azul-clan: #2925b8;
    --laranja-clan: #ff6900;
    --amarelo-clan: #ffd900;
    --fundo: #08090d;
    --fundo-cabecalho: #0d0e14;
    --branco: #ffffff;
    --cinza: #bdbdbd;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: var(--branco);
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.cabecalho {
    width: 100%;
    height: 82px;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: var(--fundo-cabecalho);
    border-bottom: 2px solid var(--azul-clan);
}

.identidade {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    width: 60px;
    height: 60px;

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

    margin-right: 14px;
}

.logo-clan {
    width: 58px;
    height: 58px;

    object-fit: contain;
    display: block;
}

.nome-clan {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nome-clan h1 {
    margin: 0;

    color: var(--branco);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nome-clan span {
    margin-top: 4px;

    color: var(--amarelo-clan);
    font-size: 9px;
    font-weight: bold;
    letter-spacing: 2px;
}


/* =========================================================
   MENU
   ========================================================= */

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;

    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.menu li {
    display: inline-flex;
    align-items: center;

    margin: 0;
    padding: 0;
}

.menu a {
    position: relative;

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

    height: 82px;
    padding: 0 16px;

    color: var(--cinza);
    text-decoration: none;
    white-space: nowrap;

    font-size: 13px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.menu a::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 0;

    height: 3px;

    background-color: var(--laranja-clan);

    transform: scaleX(0);

    transition:
        transform 0.25s ease;
}

.menu a:hover {
    color: var(--amarelo-clan);
}

.menu a:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   BOTÃO SAIR
   ========================================================= */

.menu a.botao-sair {
    height: 38px;
    padding: 0 18px;
    margin-left: 8px;

    border: 1px solid var(--amarelo-clan);
    border-radius: 4px;

    color: var(--amarelo-clan);
}

.menu a.botao-sair::after {
    display: none;
}

.menu a.botao-sair:hover {
    background-color: var(--laranja-clan);
    border-color: var(--laranja-clan);
    color: var(--branco); 
}


/* =========================================================
   CONTATO - MENU DROPDOWN
   ========================================================= */

.menu-contato {
    position: relative;
}


/* Título CONTATO */

.menu-contato-titulo {
    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 6px;

    text-decoration: none;
}


/* Seta */

.contato-seta {
    display: inline-block;

    font-size: 11px;
    line-height: 1;

    transition:
        transform 0.25s ease;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.contato-dropdown {
    position: absolute;

    top: calc(100% + 14px);
    right: 0;

    width: 240px;
    padding: 6px;

    box-sizing: border-box;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 9999;
}


/* =========================================================
   ABRIR DROPDOWN
   ========================================================= */

.menu-contato:hover .contato-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   GIRAR SETA
   ========================================================= */

.menu-contato:hover .contato-seta {
    transform: rotate(180deg);
}


/* =========================================================
   OPÇÕES DISCORD / WHATSAPP
   ========================================================= */

.contato-opcao {
    width: 100%;
    height: 58px;

    display: grid !important;

    grid-template-columns: 42px minmax(0, 1fr);

    align-items: center;

    column-gap: 10px;

    box-sizing: border-box;

    margin: 0 !important;
    padding: 8px 10px !important;

    border-radius: 8px;

    color: var(--branco);
    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   ESPAÇAMENTO ENTRE OPÇÕES
   ========================================================= */

.contato-opcao + .contato-opcao {
    margin-top: 2px !important;
}


/* =========================================================
   HOVER DAS OPÇÕES
   ========================================================= */

.contato-opcao:hover {
    background: rgba(255, 255, 255, 0.07);

    transform: translateX(3px);
}


/* =========================================================
   ÁREA FIXA DO ÍCONE
   ========================================================= */

.contato-opcao .contato-icone {
    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;
    max-width: 42px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box;

    margin: 0 !important;
    padding: 0 !important;

    background: rgba(255, 255, 255, 0.06);

    border-radius: 9px;
}


/* =========================================================
   IMAGEM DO ÍCONE
   ========================================================= */

.contato-opcao .contato-icone img {
    width: 26px !important;
    height: 26px !important;

    min-width: 26px !important;
    max-width: 26px !important;

    min-height: 26px !important;
    max-height: 26px !important;

    display: block !important;

    object-fit: contain;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   COLUNA DO TEXTO
   ========================================================= */

.contato-opcao > span:last-child {
    width: auto !important;
    min-width: 0;

    display: flex !important;

    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;

    box-sizing: border-box;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;

    line-height: normal;
}


/* =========================================================
   TÍTULO DISCORD / WHATSAPP
   ========================================================= */

.contato-opcao > span:last-child strong {
    display: block !important;

    width: auto;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--branco);

    font-size: 13px;
    font-weight: 700;

    line-height: 16px !important;

    letter-spacing: 0.5px;

    text-align: left !important;
}


/* =========================================================
   DESCRIÇÃO
   ========================================================= */

.contato-opcao > span:last-child small {
    display: block !important;

    width: auto;

    margin: 2px 0 0 0 !important;
    padding: 0 !important;

    color: var(--cinza);

    font-size: 10px;
    line-height: 13px !important;

    opacity: 0.55;

    text-align: left !important;
}


/* =========================================================
   BANNER PRINCIPAL
   ========================================================= */

.banner {
    position: relative;

    min-height: 580px;

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

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(255, 105, 0, 0.20),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            #08090d 0%,
            #10111a 55%,
            #17145c 100%
        );
}

.banner-imagem {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 9, 13, 0.98),
            rgba(8, 9, 13, 0.65),
            rgba(41, 37, 184, 0.25)
        );
}


/* =========================================================
   CONTEÚDO DO BANNER
   ========================================================= */

.banner-conteudo {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1000px;

    margin: 0 auto;
    padding: 80px 0;

    text-align: center;
}

.banner-subtitulo {
    color: var(--amarelo-clan);

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;
}

.banner h2 {
    margin-top: 15px;
    margin-bottom: 20px;

    font-size: 64px;
    line-height: 1;
}

.banner h2 strong {
    color: var(--laranja-clan);
}

.banner p {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    color: var(--cinza);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   BOTÕES DO BANNER
   ========================================================= */

.banner-botoes {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 30px;

    flex-wrap: wrap;
}

.banner-botoes a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 150px;
    min-height: 48px;

    padding: 0 22px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.banner-botoes a:hover {
    transform: translateY(-2px);
}

.banner-botoes a:nth-child(1) {
    background-color: var(--laranja-clan);

    border: 1px solid var(--laranja-clan);

    color: var(--branco);

    box-shadow:
        0 4px 15px rgba(255, 105, 0, 0.20);
}

.banner-botoes a:nth-child(1):hover {
    background-color: var(--amarelo-clan);

    border-color: var(--amarelo-clan);

    color: #111111;
}

.banner-botoes a:nth-child(2) {
    background-color: #168c43;

    border: 1px solid #168c43;

    color: var(--branco);

    box-shadow:
        0 4px 15px rgba(22, 140, 67, 0.18);
}

.banner-botoes a:nth-child(2):hover {
    background-color: #20b858;

    border-color: #20b858;
}

.banner-botoes a:nth-child(3) {
    background-color: #2925b8;

    border: 1px solid #2925b8;

    color: var(--branco);

    box-shadow:
        0 4px 15px rgba(41, 37, 184, 0.20);
}

.banner-botoes a:nth-child(3):hover {
    background-color: #403bd4;

    border-color: #403bd4;
}


/* =========================================================
   RECRUTAMENTO
   ========================================================= */

.destaque {
    width: 100%;
    min-height: 360px;

    padding: 110px 8%;

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

    text-align: center;

    background:
        linear-gradient(
            90deg,
            #000000 0%,
            #05052c 55%,
            #02025e 100%
        );
}

.destaque-conteudo {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 0;
}

.destaque-conteudo span {
    color: var(--amarelo-clan);

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;
}

.destaque-conteudo h2 {
    margin: 12px 0;

    font-size: 40px;
}

.destaque-conteudo p {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    color: #e4e4e4;

    line-height: 1.7;
}

.destaque-conteudo a {
    display: inline-block;

    margin-top: 25px;
    padding: 13px 22px;

    background-color: var(--laranja-clan);

    color: var(--branco);

    text-decoration: none;

    font-weight: bold;

    border-radius: 4px;
}


/* =========================================================
   ÁREA PRETA
   ========================================================= */

.apresentacao {
    width: 100%;

    margin: 0;

    padding: 100px 5% 120px;

    background: transparent;

    text-align: center;
}


/* =========================================================
   TÍTULO / CAMPEONATO / BEM-VINDO
   ========================================================= */

.titulo-secao {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}

.titulo-secao span {
    color: var(--amarelo-clan);

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 3px;
}

.titulo-secao h2 {
    margin-top: 10px;
    margin-bottom: 12px;

    font-size: 34px;
}

.titulo-secao p {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    color: var(--cinza);

    line-height: 1.7;
}


/* =========================================================
   CARDS
   ========================================================= */

.cards {
    width: 100%;
    max-width: 1200px;

    margin: 55px auto 0;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 50px;

    text-align: left;
}

.card {
    width: 100%;

    margin: 0;

    overflow: hidden;

    background-color: #0b0b0b;

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

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);

    border-color: var(--laranja-clan);
}

.card-imagem {
    width: 100%;
    height: 260px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #0c0d12;

    overflow: hidden;
}

.card-imagem img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.card-conteudo {
    padding: 25px;
}

.card-conteudo span {
    color: var(--laranja-clan);

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 2px;
}

.card-conteudo h3 {
    margin-top: 8px;
    margin-bottom: 10px;

    font-size: 21px;
}

.card-conteudo p {
    color: var(--cinza);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   RODAPÉ
   ========================================================= */

footer {
    width: 100%;
    min-height: 100px;

    padding: 30px 5%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    background-color: #000000;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color: #777777;

    font-size: 12px;
}

.footer-logo {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.footer-logo strong {
    color: var(--branco);
}

.footer-info {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 5px;
}


/* =========================================================
   MAPAS — BOX DE CT / TR
   ========================================================= */

/*
   Corrige especificamente a área:

   CT
   Equipe 1

   TR
   Equipe 2

   Os nomes agora ficam dentro do próprio box,
   sem estourar, sem ficar colados e sem deformar
   o card.
*/

.staff-mapa-lados {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    align-items: stretch;
}

.staff-mapa-lado {
    width: 100%;
    min-width: 0;

    padding: 10px 11px;

    background:
        rgba(255, 255, 255, 0.035);

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

    border-radius: 7px;

    overflow: hidden;
}

.staff-mapa-lado strong {
    display: block;

    width: 100%;

    margin-bottom: 6px;

    color: #888;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1.2;
}

.staff-mapa-lado span {
    display: block;

    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    color: #ddd;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.35;

    /*
       Permite quebra de nomes grandes.
    */
    white-space: normal;

    overflow-wrap: anywhere;

    word-break: break-word;
}


/* =========================================================
   NOME DO MAPA
   ========================================================= */

.staff-mapa-nome {
    width: 100%;
    min-width: 0;

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-bottom: 14px;

    color: #fff;

    font-weight: 800;
}

.staff-mapa-nome span {
    min-width: 0;

    overflow-wrap: anywhere;

    word-break: break-word;

    line-height: 1.3;
}


/* =========================================================
   CARD DO MAPA
   ========================================================= */

.staff-mapa {
    width: 100%;
    min-width: 0;

    padding: 15px;

    background:
        rgba(255, 255, 255, 0.025);

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

    border-radius: 10px;

    overflow: hidden;
}

.staff-mapa-titulo {
    width: 100%;

    margin-bottom: 10px;

    color: #888;

    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================================================
   MAPA — RESULTADO
   ========================================================= */

.staff-mapas {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(220px, 1fr)
        );

    gap: 12px;
}

.staff-mapas-resultado {
    width: 100%;

    margin-top: 22px;
}

.staff-mapas-resultado-titulo {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;
}

.staff-mapas-resultado-titulo span {
    color: #888;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.3px;
}

.staff-mapas-resultado-titulo strong {
    color: #fff;

    font-size: 16px;
}


/* =========================================================
   CONFIGURAÇÃO DE MAPAS
   ========================================================= */

.staff-mapas-config {
    width: 100%;

    margin-top: 20px;

    padding: 20px;

    background:
        rgba(255, 255, 255, 0.025);

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

    border-radius: 12px;
}

.staff-mapas-config-header {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 18px;
}

.staff-mapas-config-header div:first-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.staff-mapas-config-header span {
    color: #888;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.staff-mapas-config-header strong {
    color: #fff;

    font-size: 17px;
}

.staff-mapas-contador {
    padding: 8px 12px;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.06);

    color: #ddd;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;
}

.staff-mapas-selecao {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(180px, 1fr)
        );

    gap: 10px;
}

.staff-mapa-opcao {
    position: relative;
}

.staff-mapa-opcao input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.staff-mapa-opcao label {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 46px;

    padding: 10px 13px;

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

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #ccc;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.staff-mapa-opcao label:hover {
    background:
        rgba(255, 255, 255, 0.05);

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

    transform:
        translateY(-1px);
}

.staff-mapa-check {
    width: 18px;
    height: 18px;

    min-width: 18px;

    border:
        2px solid #666;

    border-radius: 5px;

    position: relative;

    transition:
        0.2s ease;
}

.staff-mapa-opcao input:checked + label {
    border-color:
        rgba(0, 174, 234, 0.45);

    background:
        rgba(0, 160, 220, 0.10);

    color: #fff;
}

.staff-mapa-opcao input:checked + label
.staff-mapa-check {
    background: #00aeea;

    border-color: #00aeea;
}

.staff-mapa-opcao input:checked + label
.staff-mapa-check::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 9px;

    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    transform:
        rotate(45deg);

    left: 5px;
    top: 2px;
}

.staff-mapa-nome-selecao {
    font-size: 13px;

    font-weight: 700;

    overflow-wrap: anywhere;

    word-break: break-word;
}


/* =========================================================
   AÇÕES DOS MAPAS
   ========================================================= */

.staff-mapas-acoes {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;

    margin-top: 18px;

    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}

.staff-mapas-utilitarios {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.staff-mapas-utilitario {
    border:
        1px solid rgba(255, 255, 255, 0.10);

    background:
        rgba(255, 255, 255, 0.04);

    color: #bbb;

    padding: 9px 13px;

    border-radius: 7px;

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    transition:
        0.2s ease;
}

.staff-mapas-utilitario:hover {
    background:
        rgba(255, 255, 255, 0.08);

    color: #fff;
}

.staff-botao-sortear-mapas {
    border: none;

    background: #00aeea;

    color: #fff;

    padding: 11px 18px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.4px;

    transition:
        0.2s ease;
}

.staff-botao-sortear-mapas:hover {
    background: #0097ce;

    transform:
        translateY(-1px);
}

.staff-mapas-aviso {
    margin-top: 13px;

    font-size: 11px;

    line-height: 1.5;

    color: #777;
}

.staff-mapas-aviso strong {
    color: #aaa;
}


/* =========================================================
   RESPONSIVIDADE DOS MAPAS
   ========================================================= */

@media (max-width: 600px) {

    .staff-mapas-lados {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .staff-mapa-lado {
        padding: 10px;
    }

    .staff-mapa-lado span {
        font-size: 12px;
    }

    .staff-mapas-config-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .staff-mapas-acoes {
        flex-direction: column;
        align-items: stretch;
    }

    .staff-mapas-utilitarios {
        width: 100%;
    }

    .staff-mapas-utilitario,
    .staff-botao-sortear-mapas {
        flex: 1;
    }

}


/* =========================================================
   RESPONSIVIDADE — 1100PX
   ========================================================= */

@media (max-width: 1100px) {

    .cabecalho {
        padding: 0 20px;
    }

    .menu a {
        padding: 0 10px;

        font-size: 12px;
    }

    .menu a::after {
        left: 10px;
        right: 10px;
    }

    .cards {
        max-width: 1000px;
    }

}


/* =========================================================
   RESPONSIVIDADE — 900PX
   ========================================================= */

@media (max-width: 900px) {

    .cabecalho {
        height: auto;

        min-height: 82px;

        flex-wrap: wrap;

        padding: 15px 20px;

        gap: 15px;
    }

    .menu {
        width: 100%;

        height: auto;

        overflow-x: auto;
    }

    .menu ul {
        width: 100%;

        justify-content: flex-start;

        flex-wrap: nowrap;
    }

    .menu a {
        height: 45px;
    }


    /* Banner */

    .banner-conteudo {
        width: 90%;

        padding: 70px 0;
    }

    .banner h2 {
        font-size: 52px;
    }


    /* Recrutamento */

    .destaque {
        padding: 90px 6%;
    }


    /* Apresentação */

    .apresentacao {
        padding: 80px 6% 100px;
    }


    /* Cards */

    .cards {
        grid-template-columns: 1fr;

        max-width: 650px;

        gap: 30px;
    }


    /* Rodapé */

    footer {
        padding: 25px 6%;
    }

}


/* =========================================================
   RESPONSIVIDADE — 600PX
   ========================================================= */

@media (max-width: 600px) {

    .cabecalho {
        padding: 15px;
    }

    .nome-clan h1 {
        font-size: 17px;
    }

    .nome-clan span {
        font-size: 7px;
    }

    .logo-clan {
        width: 50px;
        height: 50px;
    }


    /* Banner */

    .banner {
        min-height: 600px;
    }

    .banner-conteudo {
        width: 90%;

        padding: 60px 0;
    }

    .banner h2 {
        font-size: 44px;
    }

    .banner p {
        font-size: 14px;
    }


    /* Botões */

    .banner-botoes {
        flex-direction: column;

        align-items: center;

        width: 100%;
    }

    .banner-botoes a {
        width: 220px;
    }


    /* Recrutamento */

    .destaque {
        min-height: 380px;

        padding: 80px 5%;
    }

    .destaque-conteudo h2 {
        font-size: 32px;
    }


    /* Apresentação */

    .apresentacao {
        padding: 70px 5% 90px;
    }

    .titulo-secao h2 {
        font-size: 30px;
    }


    /* Cards */

    .cards {
        grid-template-columns: 1fr;

        width: 100%;

        margin-top: 40px;

        gap: 20px;
    }

    .card-imagem {
        height: 220px;
    }


    /* Rodapé */

    footer {
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 20px;

        padding: 25px 5%;
    }

    .footer-info {
        align-items: center;
    }


    /* =====================================================
       CONTATO NO CELULAR
       ===================================================== */

    .contato-dropdown {
        right: -20px;

        width: 230px;
    }

}


/* =========================================================
   POP-UP DE INSCRIÇÃO - CORREÇÃO
   ========================================================= */

.popup-inscricao {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

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

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.popup-inscricao.popup-aberto {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.popup-conteudo {
    position: relative;

    width: 90%;
    max-width: 420px;

    padding: 40px 30px;

    background: #101116;

    border: 1px solid #2925b8;

    border-top: 3px solid #ff6900;

    border-radius: 8px;

    text-align: center;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8);

    transform: scale(0.95);

    transition:
        transform 0.25s ease;
}

.popup-inscricao.popup-aberto .popup-conteudo {
    transform: scale(1);
}


.popup-fechar {
    position: absolute;

    top: 10px;
    right: 12px;

    width: 35px;
    height: 35px;

    border: none;

    background: transparent;

    color: #888;

    font-size: 28px;

    line-height: 35px;

    cursor: pointer;
}

.popup-fechar:hover {
    color: #ffffff;
}


.popup-icone {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        2px solid #ff6900;

    border-radius: 50%;

    color: #ff6900;

    font-size: 28px;

    font-weight: bold;
}


.popup-conteudo h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 22px;
}


.popup-conteudo p {
    margin: 0 0 25px;

    color: #bdbdbd;

    font-size: 15px;

    line-height: 1.6;
}


.popup-botao {
    width: 100%;

    min-height: 45px;

    border:
        1px solid #ff6900;

    border-radius: 5px;

    background: transparent;

    color: #ff6900;

    font-size: 12px;

    font-weight: bold;

    cursor: pointer;

    transition:
        0.2s ease;
}

.popup-botao:hover {
    background: #ff6900;

    color: #ffffff;
}
/* Registration uses native POST forms and works without JavaScript. */
.form-inscricao { display: flex; flex: 1 1 auto; min-width: 0; }
.form-inscricao > button {
    width: 100%; min-height: 46px; padding: 12px 18px;
    background: var(--laranja-clan); color: #fff;
    border: 0; border-radius: 7px; font-weight: 700;
}
.form-inscricao > button:hover { background: #d95500; }
.form-inscricao > button:focus-visible { outline: 2px solid var(--amarelo-clan); outline-offset: 3px; }
.campeonato-card-acoes { flex-wrap: wrap; }
