/**
 * Cadastro / onboarding shell (Bootstrap 5 marketing base).
 * Reserves space for the fixed footer so primary CTAs are not clipped on mobile.
 */
:root {
    --cadastro-footer-block: 3.75rem;
}

@media (max-width: 767.98px) {
    :root {
        --cadastro-footer-block: 2.85rem;
    }
}

body.cadastro-shell {
    padding-bottom: calc(var(--cadastro-footer-block) + env(safe-area-inset-bottom, 0px));
}

footer.cadastro-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    border-top: 2px solid #e6e6e6;
    background: #fff;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    font-size: 0.8125rem;
    box-sizing: border-box;
}

.cadastro-shell .header-section .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
}
