/**
 * MetSul Theme - Global Styles
 * Estilos base do layout: variáveis CSS, reset, topbar, header, navegação,
 * menu mobile, modal de busca e responsividade.
 *
 * @package MetSul
 * @since 1.0.0
 */

/* ===========================================
   DESIGN TOKENS (Variáveis CSS)
   =========================================== */
:root {
    --ms-blue-dark: #003377;
    --ms-blue-nav: #0066BF;
    --ms-orange-cta: #FC7E00;
    --ms-text: #1a1a1a;
    --ms-text-light: #666666;
    --ms-white: #ffffff;
    --ms-border: #eeeeee;
    --ms-topbar-bg: #003377;
    --font-main: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --container-max: 1400px;
    --header-height: 80px;
    --topbar-height: 46px;
}

/* ===========================================
   RESET & BASE
   =========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--ms-text);
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Acessibilidade: Screen Reader Only */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===========================================
   CONTAINER
   =========================================== */
.ms-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5px;
    width: 100%;
}

/* ===========================================
   SKIP LINK (Acessibilidade)
   =========================================== */
.ms-skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--ms-blue-dark);
    color: var(--ms-white);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    transition: top 0.2s;
}

.ms-skip-link:focus {
    top: 0;
}

/* ===========================================
   TOP BAR - Barra azul escura superior
   =========================================== */
.ms-topbar {
    background: var(--ms-topbar-bg);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.ms-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.ms-topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Menu Hamburger */
.ms-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.ms-hamburger__line {
    width: 22px;
    height: 2px;
    background: var(--ms-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ms-hamburger:hover .ms-hamburger__line {
    background: var(--ms-orange-cta);
}

.ms-topbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ms-topbar__btn-assine {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px;
    background: var(--ms-orange-cta);
    color: var(--ms-white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.ms-topbar__btn-assine:hover {
    background: #e57200;
}

/* ===========================================
   SOCIAL ICONS
   =========================================== */
.ms-social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ms-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--ms-white);
    transition: transform 0.2s, opacity 0.2s;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.ms-social-icon:hover {
    transform: translateY(-2px);
    opacity: 1;
    border-color: var(--ms-white);
    background: rgba(255, 255, 255, 0.1) !important;
}

.ms-social-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ===========================================
   SEARCH TOGGLE
   =========================================== */
.ms-search-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--ms-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.ms-search-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ms-search-toggle svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   HEADER PRINCIPAL
   =========================================== */
.ms-header {
    background: var(--ms-white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ms-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0;
}

/* Logo */
.ms-logo {
    flex-shrink: 0;
}

.ms-logo a {
    display: flex;
    align-items: center;
}

.ms-logo img {
    height: 50px;
    width: auto;
}

/* ===========================================
   NAVEGAÇÃO PRINCIPAL
   =========================================== */
.ms-nav-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-height: 44px; /* Reserva espaço para evitar CLS ao carregar */
}

.ms-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.ms-nav > li {
    position: relative;
}

.ms-nav > li > a {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 10px;
    color: var(--ms-text);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    white-space: nowrap;
}

.ms-nav > li > a:hover,
.ms-nav > li:hover > a {
    color: var(--ms-blue-nav);
}

.ms-nav > li > a svg {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: transform 0.2s;
}

.ms-nav > li:hover > a svg {
    transform: rotate(180deg);
}

/* Dropdown */
.ms-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--ms-white);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 100;
}

.ms-nav > li:hover .ms-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ms-nav__dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--ms-text);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.ms-nav__dropdown li a:hover {
    background: #f5f7fa;
    color: var(--ms-blue-nav);
    padding-left: 24px;
}

.ms-nav__btn-login {
    background: var(--ms-blue-dark) !important;
    color: var(--ms-white) !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    margin-left: 10px;
    font-weight: 700 !important;
    align-self: center;
}

.ms-nav__btn-login:hover {
    background: #003377 !important;
}

.ms-nav__btn-assine {
    background: var(--ms-orange-cta) !important;
    color: var(--ms-white) !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    margin-left: 10px;
    font-weight: 700 !important;
    align-self: center;
}

.ms-nav__btn-assine:hover {
    background: #e57200 !important;
}

/* ===========================================
   BOTÕES DE AÇÃO (Login e Assine no Header)
   =========================================== */
.ms-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
    flex-shrink: 0;
}

.ms-btn-action {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
}

.ms-btn-action--login {
    color: var(--ms-blue-nav);
    border: 1px solid var(--ms-blue-nav);
}

.ms-btn-action--login:hover {
    background: rgba(0, 102, 191, 0.05);
}

.ms-btn-action--assine {
    background: var(--ms-orange-cta);
    color: var(--ms-white);
}

.ms-btn-action--assine:hover {
    background: #e57200;
    transform: translateY(-1px);
}

/* ===========================================
   MENU DO USUÁRIO LOGADO (Desktop)
   =========================================== */
.ms-user-menu {
    position: relative;
}

.ms-user-menu__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    background: transparent;
    border: 1px solid var(--ms-border);
    border-radius: 24px;
    cursor: pointer;
    font-family: var(--font-main);
    color: var(--ms-blue-dark);
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.ms-user-menu__toggle:hover {
    background: rgba(0, 102, 191, 0.04);
    border-color: var(--ms-blue-nav);
}

.ms-user-menu__avatar-wrap {
    display: flex;
    flex-shrink: 0;
}

.ms-user-menu__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ms-user-menu__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ms-blue-nav);
    color: var(--ms-white);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.ms-user-menu__name {
    font-size: 13px;
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ms-user-menu__chevron {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.25s ease;
}

.ms-user-menu__toggle[aria-expanded="true"] .ms-user-menu__chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.ms-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: var(--ms-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
    z-index: 1000;
}

.ms-user-menu__dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ms-user-menu__dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ms-text);
    transition: background 0.1s;
}

.ms-user-menu__dropdown a:hover {
    background: #f3f6f9;
    color: var(--ms-blue-nav);
    text-decoration: none;
}

/* ===========================================
   MENU DO USUÁRIO LOGADO (Mobile)
   =========================================== */
.ms-mobile-user__info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 700;
    color: var(--ms-blue-dark);
    font-size: 14px;
}

.ms-mobile-user__avatar-wrap {
    display: flex;
    flex-shrink: 0;
}

.ms-mobile-user__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.ms-mobile-user__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ms-blue-nav);
    color: var(--ms-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* ===========================================
   BOTÃO GENÉRICO
   =========================================== */
.ms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.ms-btn--assine {
    background: var(--ms-orange-cta);
    color: var(--ms-white);
    box-shadow: 0 4px 12px rgba(252, 126, 0, 0.3);
}

.ms-btn--assine:hover {
    background: #e57200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(252, 126, 0, 0.4);
}

.ms-btn--primary {
    background: var(--ms-blue-nav);
    color: var(--ms-white);
}

.ms-btn--primary:hover {
    background: var(--ms-blue-dark);
    transform: translateY(-1px);
}

/* ===========================================
   MENU MOBILE
   =========================================== */
.ms-mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--ms-white);
    z-index: 2000;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.ms-mobile-menu.is-open {
    left: 0;
}

.ms-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ms-mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.ms-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--ms-blue-dark);
    color: var(--ms-white);
}

.ms-mobile-menu__close {
    background: transparent;
    border: none;
    color: var(--ms-white);
    cursor: pointer;
    padding: 8px;
}

.ms-mobile-menu__close svg {
    width: 24px;
    height: 24px;
}

.ms-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-mobile-nav > li {
    border-bottom: 1px solid #f0f0f0;
}

.ms-mobile-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--ms-text);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.ms-mobile-nav > li > a:hover {
    background: #f8f9fa;
    color: var(--ms-blue-nav);
}

.ms-mobile-nav .ms-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
}

.ms-mobile-nav .ms-submenu.is-open {
    display: block;
}

.ms-mobile-nav .ms-submenu li a {
    display: block;
    padding: 12px 20px 12px 32px;
    color: var(--ms-text-light);
    font-size: 13px;
    font-weight: 600;
}

.ms-mobile-nav .ms-submenu li a:hover {
    color: var(--ms-blue-nav);
}

/* ===========================================
   SEARCH MODAL
   =========================================== */
.ms-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ms-search-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.ms-search-modal__inner {
    width: 100%;
    max-width: 700px;
    padding: 20px;
}

.ms-search-modal__close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--ms-white);
    cursor: pointer;
    padding: 10px;
}

.ms-search-modal__close svg {
    width: 32px;
    height: 32px;
}

.ms-search-form {
    display: flex;
    background: var(--ms-white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ms-search-form__input {
    flex: 1;
    padding: 18px 28px;
    border: none;
    font-size: 16px;
    outline: none;
    font-family: var(--font-main);
}

.ms-search-form__btn {
    padding: 18px 28px;
    background: var(--ms-blue-nav);
    border: none;
    color: var(--ms-white);
    cursor: pointer;
    transition: background 0.2s;
}

.ms-search-form__btn:hover {
    background: var(--ms-blue-dark);
}

.ms-search-form__btn svg {
    width: 20px;
    height: 20px;
}

/* ===========================================
   FOOTER
   =========================================== */
.ms-footer {
    background: var(--ms-blue-dark);
    color: var(--ms-white);
    padding-top: 60px;
    padding-bottom: 20px;
}

.ms-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.ms-footer__contact-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    color: var(--ms-white);
}

.ms-footer__contact-info {
    font-size: 14px;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.ms-footer__social {
    display: flex;
    gap: 10px;
}

.ms-footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--ms-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.ms-footer__social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ms-white);
    transform: translateY(-2px);
}

.ms-footer__social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ms-footer-nav {
    flex: 1;
    margin-left: 40px;
}

.ms-footer-sitemap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ms-footer-sitemap__title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: var(--ms-white);
    letter-spacing: 0.5px;
}

.ms-footer-sitemap__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-footer-sitemap__list li {
    margin-bottom: 8px;
}

.ms-footer-sitemap__list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.ms-footer-sitemap__list a:hover {
    color: var(--ms-white);
    text-decoration: underline;
}

.ms-footer__bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ms-footer__legal {
    font-size: 12px;
    margin: 0;
}

.ms-footer__bottom a {
    color: inherit;
    text-decoration: underline;
}

/* ===========================================
   SIDEBAR (Base)
   =========================================== */
.ms-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ms-widget {
    background: var(--ms-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.ms-widget__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ms-white);
    background: var(--ms-blue-dark);
    margin: 0;
    padding: 14px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ms-widget__content {
    padding: 20px;
}

/* Popular Items */
.ms-popular-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ms-popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ms-popular-item:first-child {
    padding-top: 0;
}

.ms-popular-item__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--ms-blue-nav);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.ms-popular-item__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.ms-popular-item__title a {
    color: var(--ms-text);
    text-decoration: none;
    transition: color 0.2s;
}

.ms-popular-item__title a:hover {
    color: var(--ms-blue-nav);
}

/* Weather Widget */
.ms-widget-weather__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--ms-blue-nav) 0%, var(--ms-blue-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ms-widget-weather__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 191, 0.3);
}

/* Newsletter Widget */
.ms-widget--newsletter {
    background: linear-gradient(135deg, var(--ms-orange-cta) 0%, #e56a00 100%);
}

.ms-widget--newsletter .ms-widget__title {
    background: rgba(0, 0, 0, 0.1);
}

.ms-widget-newsletter__text {
    font-size: 14px;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.5;
}

.ms-widget-newsletter__btn {
    display: block;
    padding: 12px 20px;
    background: #fff;
    color: var(--ms-orange-cta);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.ms-widget-newsletter__btn:hover {
    background: #fff7f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   RESPONSIVO - GLOBAL
   =========================================== */
@media (max-width: 1200px) {
    .ms-nav > li > a {
        padding: 10px 10px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .ms-nav-container {
        display: none;
    }

    .ms-header__actions {
        display: flex;
    }
}

@media (max-width: 768px) {
    .ms-topbar {
        height: 42px;
    }

    .ms-social-icons {
        display: none;
    }

    .ms-header {
        height: 65px;
    }

    .ms-logo img {
        height: 40px;
    }

    .ms-btn-action {
        font-size: 10px;
        padding: 6px 10px;
    }

    .ms-footer__top {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .ms-footer-nav {
        margin-left: 0;
        width: 100%;
    }

    .ms-footer-sitemap {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 480px) {
    .ms-search-toggle span {
        display: none;
    }

    .ms-header__actions .ms-btn--assine {
        padding: 8px 14px;
        font-size: 11px;
    }

    .ms-footer-sitemap {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   REDUCED MOTION (Acessibilidade)
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
