/* @landings/landing-kit — structural primitives only (no brand tokens) */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

img,
svg,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

section[id],
#conteudo {
    scroll-margin-top: var(--header-offset, 5rem);
}

.map-frame {
    position: relative;
    overflow: hidden;
}

.map-frame iframe {
    display: block;
    width: 100%;
    border: 0;
}

.floating-actions {
    position: fixed;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
