/* =====================================================
   RESET
===================================================== */

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #061f16;
    color: #ffffff;
}


/* =====================================================
   TOPO
===================================================== */

.pontos-topo {
    width: 100%;

    padding: 11px 22px;

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

    background:
        linear-gradient(
            135deg,
            #05261a,
            #0b3d29
        );

    border-bottom:
        1px solid
        rgba(216, 169, 40, 0.4);

    box-shadow:
        0 4px 15px
        rgba(0, 0, 0, 0.2);

    position: relative;
    z-index: 10;
}

.pontos-logo {
    color: #ffffff;

    font-size: 19px;
    font-weight: 900;

    letter-spacing: 0.5px;
}

.pontos-logo span {
    color: #d8a928;
}

.pontos-voltar {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 14px;

    border:
        1px solid
        #d8a928;

    border-radius: 20px;

    background: transparent;

    color: #ffffff;

    text-decoration: none;

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

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

.pontos-voltar:hover {
    background: #d8a928;
    color: #062318;

    transform: translateY(-1px);
}


/* =====================================================
   ÁREA PRINCIPAL
===================================================== */

.pontos-main {
    position: relative;

    min-height: calc(100vh - 55px);

    padding:
        25px
        18px
        30px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(19, 91, 60, 0.5),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #073522 0%,
            #061f16 100%
        );
}


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

.pontos-section {
    position: relative;

    z-index: 3;

    width: min(1000px, 100%);

    margin: 0 auto;
}


/* =====================================================
   TÍTULO
===================================================== */

.pontos-titulo {
    text-align: center;

    margin-bottom: 18px;
}

.pontos-titulo span {
    display: inline-block;

    margin-bottom: 4px;

    color: #d8a928;

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

    letter-spacing: 1.8px;
}

.pontos-titulo h1 {
    color: #ffffff;

    font-size: 29px;
    font-weight: 900;

    line-height: 1.1;
}

.pontos-titulo p {
    max-width: 560px;

    margin: 6px auto 0;

    color:
        rgba(255, 255, 255, 0.76);

    font-size: 12px;

    line-height: 1.4;
}


/* =====================================================
   BUSCA
===================================================== */

.pontos-busca {
    width: min(570px, 100%);

    margin: 0 auto 13px;

    padding: 12px 15px;

    background: #ffffff;

    border:
        2px solid
        rgba(216, 169, 40, 0.7);

    border-radius: 13px;

    box-shadow:
        0 8px 22px
        rgba(0, 0, 0, 0.18);
}

.pontos-busca label {
    display: block;

    margin-bottom: 5px;

    color: #073522;

    font-size: 11px;
    font-weight: 800;
}

.pontos-busca input {
    width: 100%;

    height: 37px;

    padding: 0 11px;

    border:
        1px solid
        #cccccc;

    border-radius: 8px;

    outline: none;

    background: #ffffff;

    color: #173226;

    font-size: 13px;
}

.pontos-busca input::placeholder {
    color: #888888;
}

.pontos-busca input:focus {
    border-color: #d8a928;

    box-shadow:
        0 0 0 2px
        rgba(216, 169, 40, 0.18);
}


/* =====================================================
   BOTÃO VER TODOS
===================================================== */

.botao-ver-todos-pontos {
    display: block;

    margin:
        0 auto
        14px;

    padding:
        7px
        16px;

    border:
        1px solid
        #d8a928;

    border-radius: 20px;

    background: transparent;

    color: #ffffff;

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

    cursor: pointer;

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

.botao-ver-todos-pontos:hover {
    background: #d8a928;

    color: #062318;

    transform: translateY(-1px);
}


/* =====================================================
   MENSAGEM
===================================================== */

.mensagem-pontos {
    width: min(650px, 100%);

    margin: 0 auto 13px;

    padding: 10px;

    border-radius: 9px;

    background: #ffffff;

    color: #17432f;

    text-align: center;

    font-size: 11px;
    font-weight: 700;
}

.mensagem-pontos.erro {
    color: #8d2a22;
}


/* =====================================================
   LISTA
===================================================== */

.lista-pontos {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(230px, 1fr)
        );

    gap: 12px;

    width: 100%;
}


/* =====================================================
   CARD
===================================================== */

.ponto-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 15px;

    min-height: 145px;

    background: #ffffff;

    border:
        1px solid
        rgba(216, 169, 40, 0.8);

    border-radius: 13px;

    box-shadow:
        0 7px 20px
        rgba(0, 0, 0, 0.17);

    overflow: hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.ponto-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #0b6b45,
            #d8a928,
            #0b6b45
        );
}

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

    box-shadow:
        0 12px 25px
        rgba(0, 0, 0, 0.22);
}

.ponto-card h2 {
    margin-bottom: 6px;

    color: #073522;

    font-size: 17px;
    font-weight: 900;

    line-height: 1.2;
}

.ponto-card p {
    margin-bottom: 10px;

    color: #52645b;

    font-size: 11px;

    line-height: 1.4;
}


/* =====================================================
   BOTÃO JOGAR
===================================================== */

.botao-jogar-ponto {
    width: 100%;

    margin-top: auto;

    padding:
        9px
        12px;

    border: none;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #0b6b45,
            #084d32
        );

    color: #ffffff;

    text-align: center;
    text-decoration: none;

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

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.botao-jogar-ponto:hover {
    transform: translateY(-1px);

    box-shadow:
        0 5px 12px
        rgba(5, 75, 48, 0.3);
}


/* =====================================================
   CARREGANDO
===================================================== */

.pontos-carregando {
    padding: 20px;

    color:
        rgba(255, 255, 255, 0.75);

    text-align: center;

    font-size: 12px;
}


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

.pontos-footer {
    position: relative;

    z-index: 3;

    padding:
        14px
        15px;

    background: #041b12;

    border-top:
        1px solid
        rgba(216, 169, 40, 0.3);

    text-align: center;
}

.pontos-logo-footer {
    color: #ffffff;

    font-size: 15px;
    font-weight: 900;
}

.pontos-logo-footer span {
    color: #d8a928;
}

.pontos-footer p {
    margin-top: 4px;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 10px;
}


/* =====================================================
   ANIMAÇÃO
===================================================== */

@keyframes flutuarPontos {

    0% {
        opacity: 0;

        transform:
            translateY(18px)
            scale(0.75)
            rotate(-8deg);
    }

    15% {
        opacity: 0.85;
    }

    35% {
        opacity: 1;

        transform:
            translateY(-10px)
            scale(1)
            rotate(5deg);
    }

    55% {
        opacity: 0.95;

        transform:
            translateY(-18px)
            scale(1.05)
            rotate(-5deg);
    }

    75% {
        opacity: 0.7;

        transform:
            translateY(-5px)
            scale(0.98)
            rotate(5deg);
    }

    100% {
        opacity: 0;

        transform:
            translateY(18px)
            scale(0.75)
            rotate(-8deg);
    }
}


/* =====================================================
   CONTEÚDO FICA NA FRENTE
===================================================== */

.pontos-main > *:not(.pontos-bola) {
    position: relative;

    z-index: 3;
}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 650px) {}

    .pontos-topo {
        padding:
            10px
            14px;
    }

    .pontos-logo {
        font-size: 16px;
    }

    .pontos-voltar {
        padding:
            6px
            11px;

        font-size: 10px;
    }

    .pontos-main {
        padding:
            22px
            12px
            25px;
    }

    .pontos-titulo {
        margin-bottom: 14px;
    }

    .pontos-titulo h1 {
        font-size: 25px;
    }

    .pontos-titulo p {
        font-size: 11px;
    }

    .pontos-busca {
        padding: 10px 12px;

        margin-bottom: 10px;
    }

    .pontos-busca input {
        height: 35px;
    }

    .lista-pontos {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .ponto-card {
        min-height: 125px;

        padding: 13px;
    }

    .ponto-card h2 {
        font-size: 16px;
    }

    .ponto-card p {
        font-size: 10px;
    }

    .botao-jogar-ponto {
        padding: 8px;

        font-size: 10px;
    }

  
/* =====================================================
   CAIXA DE PESQUISA — MAIOR
===================================================== */

.pontos-busca {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 18px;
}

.pontos-busca label {
    display: block;
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;

    color: #d8a928;
}

.pontos-busca input {
    width: 100%;
    height: 58px;

    padding: 0 20px;

    border: 2px solid #d8a928;
    border-radius: 14px;

    background: #ffffff;

    color: #06152f;

    font-size: 16px;

    outline: none;

    box-shadow:
        0 5px 15px
        rgba(0, 0, 0, 0.12);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.pontos-busca input::placeholder {
    color: #7b8492;
}

.pontos-busca input:focus {
    border-color: #b88916;

    box-shadow:
        0 0 0 4px
        rgba(216, 169, 40, 0.15),
        0 6px 18px
        rgba(0, 0, 0, 0.15);
}


/* CELULAR */

@media (max-width: 650px) {

    .pontos-busca {
        max-width: 100%;
    }

    .pontos-busca input {
        height: 54px;
        padding: 0 16px;
        font-size: 15px;
    }
}

/* =====================================================
   20 BOLAS PNG — ÁREA DE LINKS
===================================================== */

.pontos-main {
    position: relative;
    overflow: hidden;
}

.pontos-main .bola {
    position: absolute;

    width: 26px;
    height: 26px;

    object-fit: contain;

    pointer-events: none;

    z-index: 2;

    opacity: 0.9;

    filter:
        drop-shadow(
            0 2px 4px
            rgba(0, 0, 0, 0.22)
        );

    animation:
        flutuarBolas
        5s ease-in-out
        infinite;
}


/* ESQUERDA */

.bola-01 { left: 8px; top: 5%; }
.bola-02 { left: 38px; top: 13%; width: 21px !important; height: 21px !important; }
.bola-03 { left: 10px; top: 23%; }
.bola-04 { left: 45px; top: 34%; width: 22px !important; height: 22px !important; }
.bola-05 { left: 8px; top: 45%; }
.bola-06 { left: 38px; top: 56%; width: 23px !important; height: 23px !important; }
.bola-07 { left: 10px; top: 67%; }
.bola-08 { left: 45px; top: 77%; width: 22px !important; height: 22px !important; }
.bola-09 { left: 8px; top: 88%; }


/* DIREITA */

.bola-10 { right: 8px; top: 7%; }
.bola-11 { right: 40px; top: 17%; width: 22px !important; height: 22px !important; }
.bola-12 { right: 10px; top: 28%; }
.bola-13 { right: 45px; top: 39%; width: 23px !important; height: 23px !important; }
.bola-14 { right: 8px; top: 50%; }
.bola-15 { right: 40px; top: 61%; width: 22px !important; height: 22px !important; }
.bola-16 { right: 10px; top: 71%; }
.bola-17 { right: 45px; top: 81%; width: 23px !important; height: 23px !important; }
.bola-18 { right: 8px; top: 91%; }


/* EXTRAS */

.bola-19 {
    left: 65px;
    top: 30%;

    width: 20px !important;
    height: 20px !important;
}

.bola-20 {
    right: 65px;
    top: 68%;

    width: 20px !important;
    height: 20px !important;
}


/* ANIMAÇÃO */

@keyframes flutuarBolas {

    0% {
        transform:
            translateY(5px)
            rotate(-4deg);
    }

    50% {
        transform:
            translateY(-9px)
            rotate(4deg);
    }

    100% {
        transform:
            translateY(5px)
            rotate(-4deg);
    }
}


/* CELULAR */

@media (max-width: 650px) {

    .pontos-main .bola {
        width: 22px;
        height: 22px;
    }

    .bola-02,
    .bola-04,
    .bola-06,
    .bola-08,
    .bola-11,
    .bola-13,
    .bola-15,
    .bola-17,
    .bola-19,
    .bola-20 {
        width: 18px !important;
        height: 18px !important;
    }
}

/* =====================================================
   AJUSTES — ÁREA DE LINKS
===================================================== */


/* =====================================================
   BOTÃO VOLTAR
===================================================== */

.pontos-voltar {
    padding: 11px 20px !important;

    font-size: 15px !important;
    font-weight: 800 !important;

    min-width: 125px;

    text-align: center;

    border-radius: 10px;
}


/* =====================================================
   FRASE "DIGITE O NOME..."
===================================================== */

.pontos-busca label {
    font-size: 16px !important;
    font-weight: 800 !important;

    margin-bottom: 10px !important;

    letter-spacing: 0.5px;
}


/* =====================================================
   CAIXA DE PESQUISA
===================================================== */

.pontos-busca input {
    height: 62px !important;

    font-size: 17px !important;

    padding: 0 22px !important;
}


/* =====================================================
   NOME DOS PONTOS
===================================================== */

.ponto-card h2 {
    width: 100%;

    text-align: center !important;

    font-size: 21px !important;

    font-weight: 800 !important;

    margin-bottom: 14px !important;
}


/* =====================================================
   BOTÃO JOGAR NESTE PONTO
===================================================== */

.botao-jogar-ponto {
    display: flex !important;

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

    width: 100%;

    min-height: 52px;

    padding: 12px 20px !important;

    font-size: 15px !important;

    font-weight: 800 !important;

    text-align: center !important;

    border-radius: 10px !important;
}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 650px) {

    .pontos-voltar {
        min-width: 115px;

        padding: 10px 16px !important;

        font-size: 14px !important;
    }

    .pontos-busca label {
        font-size: 15px !important;
    }

    .pontos-busca input {
        height: 58px !important;

        font-size: 16px !important;
    }

    .ponto-card h2 {
        font-size: 19px !important;
    }

    .botao-jogar-ponto {
        min-height: 50px;

        font-size: 14px !important;
    }
}

