/* Base styles */
html {
    scroll-behavior: smooth;
    font-size: 18px;
    /* Increased base font size */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050B1A;
    /* bg-background-dark */
    color: #E2E8F0;
    /* text-silver */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Custom Gradients */
.metallic-gradient {
    background: linear-gradient(135deg, #1E4DB7 0%, #0A2E7A 100%);
}

.dark-gradient {
    background: radial-gradient(circle at top, #0A1229 0%, #050B1A 100%);
}

/* Vitrine Specifics */
/* Badge - Posicionamento fixo no rodapé */
/* Vitrine Specifics - Only apply fixed positioning when explicit class is present */
.vitrine-page #montesite-footer-badge,
.vitrine-page #montesite-footer-badge>*,
.vitrine-page #montesite-footer-badge iframe {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 63px !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
}