/* Menu de navegação para dispositivos móveis */
.mobile-sticky-nav {
    display: none; /* Oculto por padrão */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background-color: #000000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    padding: 10px 0 8px;
    border-top: 1px solid #333333;
    box-sizing: border-box;
    overflow: hidden;
}

.mobile-sticky-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-sticky-nav li {
    flex: 1;
    text-align: center;
    position: relative;
}

.mobile-sticky-nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Roboto', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 2px;
    transition: color 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.mobile-sticky-nav a:active,
.mobile-sticky-nav a:hover {
    color: #de2600; /* Cor vermelha do site */
}

.mobile-sticky-nav svg {
    margin-bottom: 2px;
    height: 24px;
    width: 24px;
    transition: transform 0.3s ease;
    fill: #e8e8e8;
    stroke: #e8e8e8;
}

/* Todos os ícones em branco para harmonizar com o fundo preto */
.mobile-sticky-nav svg {
    stroke: #e8e8e8 !important;
    fill: none !important;
}

.mobile-sticky-nav svg path {
    stroke: #e8e8e8 !important;
    fill: none !important;
}

.mobile-sticky-nav svg rect {
    stroke: #e8e8e8 !important;
    fill: none !important;
}

.mobile-sticky-nav svg circle {
    stroke: #e8e8e8 !important;
    fill: none !important;
}

/* Correção específica para o ícone de 'Mais Vistos' (play button) */
.mobile-sticky-nav li:nth-child(5) svg path[fill="currentColor"] {
    fill: #e8e8e8 !important;
    stroke: #e8e8e8 !important;
}

/* Efeito hover moderno */
.mobile-sticky-nav a:hover svg,
.mobile-sticky-nav a:active svg {
    transform: translateY(-2px);
}

/* Ajuste visual para os ícones de 'Vídeos' (1º) e 'Filmes' (2º)
   para compensar margens internas dos SVG e igualar ao tamanho percebido */
.mobile-sticky-nav li:nth-child(1) svg {
    transform: scale(1.12);
}

.mobile-sticky-nav li:nth-child(2) svg {
    transform: scale(1.24);
}

.mobile-sticky-nav li:nth-child(1) a:hover svg,
.mobile-sticky-nav li:nth-child(1) a:active svg {
    transform: translateY(-2px) scale(1.12);
}

.mobile-sticky-nav li:nth-child(2) a:hover svg,
.mobile-sticky-nav li:nth-child(2) a:active svg {
    transform: translateY(-2px) scale(1.24);
}

.mobile-sticky-nav a img {
    margin-bottom: 1px; /* Menor margem para o ícone maior */
    transition: all 0.2s ease;
}

.mobile-sticky-nav a:hover img,
.mobile-sticky-nav a:active img {
    transform: translateY(-2px);
}

/* Estilo específico para o ícone de início */
.mobile-sticky-nav .home-icon img {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    filter: none;
}

/* Ajuste para o texto do ícone de início */
.mobile-sticky-nav .home-icon span {
    font-weight: 500; /* Texto em negrito */
    color: #e8e8e8; /* Branco para harmonizar com os demais */
    font-size: 11px; /* Mesmo tamanho das demais labels */
}

.mobile-sticky-nav a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-weight: 500;
    line-height: 1;
}

/* Adiciona espaço na parte inferior do site para acomodar o menu fixo */
body.has-mobile-nav {
    padding-bottom: 70px;
}

/* Media Query para exibir somente em dispositivos móveis */
@media (max-width: 767px) {
    .mobile-sticky-nav {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
}