    .body {
        margin: 0;
        height: 100vh;
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: Arial, sans-serif;
        overflow: hidden;
        color: #fff;
    }

    .map-container {
        position: relative;
        width: 720px;
        height: 720px;
    }

    .btn-circle {
        position: absolute;
        width: 150px;
        height: 150px;
        background: #000;
        color: #fff;
        border: 3px solid #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        padding: 12px;
        text-transform: uppercase;
        line-height: 1.2;
        transition: .3s;
    }

    .btn-circle:hover {
        background: #fff;
        color: #000;
        transform: scale(1.08);
    }

    /* --- PULSE EFFECT FOR CENTER BUTTON --- */
    .center {
        width: 200px;
        height: 200px;
        font-size: 16px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        animation: pulse 2s infinite ease-in-out;
        z-index: 10;
    }

    @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(1); }
        50% { transform: translate(-50%, -50%) scale(1.12); }
        100% { transform: translate(-50%, -50%) scale(1); }
    }

    /* Positions */
    .btn-circle[data-pos="top"] { top: 2%; left: 50%; transform: translate(-50%, 0); }
    .btn-circle[data-pos="top-right"] { top: 11%; right: 5%; }
    .btn-circle[data-pos="right"] { top: 50%; right: -2%; transform: translateY(-50%); }
    .btn-circle[data-pos="bottom-right"] { bottom: 11%; right: 5%; }
    .btn-circle[data-pos="bottom"] { bottom: 2%; left: 50%; transform: translate(-50%, 0); }
    .btn-circle[data-pos="bottom-left"] { bottom: 11%; left: 5%; }
    .btn-circle[data-pos="left"] { top: 50%; left: -2%; transform: translateY(-50%); }
    .btn-circle[data-pos="top-left"] { top: 11%; left: 5%; }

    /* 📱 RESPONSIVO — mantém o círculo */
    @media (max-width: 768px) {
        body {
            overflow-y: auto;
        }

        .map-container {
            width: 90vw;
            height: 90vw;
        }

        .btn-circle {
            width: 20vw;
            height: 20vw;
            font-size: 10px;
            padding: 6px;
        }

        .center {
            width: 28vw;
            height: 28vw;
            font-size: 12px;
        }

        /* Ajusta as posições proporcionalmente */
        .btn-circle[data-pos="top"] { top: 0%; }
        .btn-circle[data-pos="bottom"] { bottom: 0%; }
    }


 /* Botão central maior e com a imagem cobrindo tudo */
.btn-circle.center {
  width: 260px;
  height: 260px;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagem ocupa totalmente o círculo */
.btn-circle.center img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Corta o excesso mantendo proporção */
  border-radius: 50%; /* Mantém circular */
}



 