* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700 !important;
    font-style: normal;
}
a,
a:hover,
a:focus,
a:visited {
    outline: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* ISLANDS SVG */
.island-wrapper {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}
.island-shape {
    /* fill: #bcd4f1 !important; */
    fill: #EDB !important;
    stroke: #1a5dac !important;
    stroke-width: 1.5;
    transition: fill 0.2s ease, transform 0.2s ease;
    transform-origin: center;
}
/* Hover sem cortar: escala aplicada no grupo g */
.island-wrapper:hover .island-shape {
    fill: var(--nc-lightblue) !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transform: scale(1.05);
    transform-origin: center;
}
svg {
    width: 100%;
    height: 100%;
}

/**
 * Footer
 */
.vegas-timer { /** Vegas slideshow progress-bar */
    z-index: 9999 !important;
}
footer {
    background-color: var(--nc-darkblue);
    color: var(--nc-lightblue) !important;
    font-size: 12px !important;
    bottom: 2px !important; /* enable if `Vegas BackGround SlideShow timer` enabled */
}
footer a {
    color: var(--nc-blue);
    font-weight: bold;
}
footer a:hover {
    color: #fff;
}
footer ul.social .list-inline-item:not(:last-child) {
    margin-right: 0 !important;
}
@media (max-width: 768px) { /* Mobile L */
    footer ul.social {
        min-width: 30%;
    }
    footer ul.social .list-inline-item:not(:last-child) {
        margin-bottom: .25rem !important;
        padding: 0 !important;
    }
}
@media (min-width: 992px) {
    footer ul:not(.social) li:not(:first-child)::before {
        content: "|";
        padding-left: 10px;
        padding-right: 12px;
        color: var(--nc-lightblue);
    }
}

html, body {
    overflow-y: auto;
    scroll-behavior: smooth; /* rolagem suave */
}
/* Firefox */
* {
    scrollbar-width: thin; /* fino */
    scrollbar-color: #333 transparent; /* <thumb> <track> */
}
/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
    width: 8px;
}
*::-webkit-scrollbar-track {
    background: transparent;
    /* border-radius: 4px; */
}
*::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 4px;
    border: 2px solid rgba(0,0,0,0.1);
}