        .card {
                position: relative;
                margin-bottom: 10px;
        }

        .custom-pagination {
            display: inline-block;
            margin: 20px 0;
        }

        .custom-pagination a, .custom-pagination span {
            color: #007bff;
            text-decoration: none;
            margin: 0 5px;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            transition: background-color 0.3s, color 0.3s;
            font-family: Arial, sans-serif;
            font-size: 14px;
        }

        .custom-pagination a:hover {
            background-color: #007bff;
            color: white;
        }

        .custom-pagination .current-page {
            background-color: #007bff;
            color: white;
            border-color: #007bff;
            font-weight: bold;
        }

        .faixa-diagonal {
            position: absolute;
            top: 8px;
            right: -28px;
            transform: rotate(45deg);
            color: #fff;
            font-weight: 600;
            text-align: center;
            padding: 6px 20px;
            z-index: 3;
            font-size: 12px;
            letter-spacing: 0.5px;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
        }

       /* STANDARD */
        .faixa-diagonal.standard {
            background: linear-gradient(135deg, #c8c8c8ff, #6e6e6e); /* cinza premium */
             z-index: 2;
        }

        /* GOLD */
        .faixa-diagonal.gold {
            background: linear-gradient(135deg, #ffdf29ff, #b79200ff); /* dourado real */
             z-index: 2;
        }

        /* PLATINUM */
        .faixa-diagonal.platinum {
            background: linear-gradient(135deg, #d8ecff, #8abfff);
            font-weight: 700;
            border: 1px solid rgba(255,255,255,0.25); /* borda metálica */
            overflow: hidden; /* garante reflexo interno */
        }

        .faixa-diagonal.platinum::after {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 70%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255,255,255,0.45),
                transparent
            );
            transform: skewX(-20deg);
            animation: shinePlatinum 3.5s infinite ease-in-out;
            z-index: 1;
        }

        @keyframes shinePlatinum {
            0% { left: -120%; }
            100% { left: 140%; }
        }

        /* DIAMOND */
        .faixa-diagonal.diamond {
            background: linear-gradient(135deg, #9a2de2ff, #6d07a8ff);
            text-transform: uppercase;
            font-weight: 700;
            border: 1px solid rgba(255,255,255,0.25);
            overflow: hidden;
            z-index: 2;
        }

        /* Neon atrás (somente Diamond) */
        .faixa-diagonal.diamond::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #8e2de2;
            border-radius: inherit;
            filter: blur(10px);
            opacity: 0.6;
            z-index: 0;
            animation: diamondNeon 3.2s infinite ease-in-out;
        }

        @keyframes diamondNeon {
            0% { opacity: 0; }
            50% { opacity: 0.8; }
            100% { opacity: 0; }
        }

        /* Reflexo passando (efeito premium extra) */
        .faixa-diagonal.diamond::after {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 80%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255,255,255,0.7),
                transparent
            );
            transform: skewX(-20deg);
            animation: shineDiamond 3.2s infinite ease-in-out;
            z-index: 0;
        }

        @keyframes shineDiamond {
            0% { left: -120%; }
            100% { left: 140%; }
        }


        .card-group {
            margin-bottom: 1.5rem;
        }
        .card img {
            height: 200px;
            object-fit: cover;
        }
        .btn-side {
            width: 100%;
            margin-bottom: 10px;
        }
        .highlight {
            background-color: orange;
            color: white;
        }
        .card-title {
            display: -webkit-box; /* Garante suporte a clamping */
            -webkit-line-clamp: 2; /* Limita a 2 linhas */
            -webkit-box-orient: vertical; /* Necessário para line-clamp */
            overflow: hidden; /* Oculta o texto excedente */
            text-overflow: ellipsis; /* Adiciona os "..." */
            height: 3em; /* Define a altura aproximada para 2 linhas */
            line-height: 1.5em; /* Define o espaçamento entre as linhas */
        }
        .card-link {
            text-decoration: none;
            color: inherit; /* Manter as cores do card */
        }
        .card-body {
            cursor: pointer; /* Aponta o cursor para mostrar que o card é clicável */
        }
        .badge-pendente {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: red;
            color: white;
            border-radius: 50%;
            padding: 5px 10px;
            font-size: 14px;
        }
        .btn-pendente {
            position: relative;
        }

        h2 {
            text-align: left; /* Centraliza o texto */
            margin-bottom: 20px;
            font-size: 1.5rem; /* Ajusta o tamanho da fonte */
            color: #333; /* Cor do título */
            font-weight: bold; /* Deixa o título em negrito */
        }

        .row-cols-1 h2 {
            width: 100%; /* Garante que o título ocupe toda a largura da coluna */
        }
        .modal {
            display: none; /* Inicialmente escondido */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }

        .modal-content {
            background-color: white;
            margin: 100px auto;
            padding: 20px;
            width: 80%;
            max-width: 400px;
            border-radius: 8px;
            z-index: 9999;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 1px solid #ddd;
            z-index: 9999;
        }

        .modal-header .close {
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 9999;
        }

        .modal-body {
            padding: 10px 0;
            z-index: 9999;
        }

        .btnface{
            background-color:rgb(62, 114, 255);
            color:white;
        }

        .updates-container {
            display: flex; /* Flexbox para organizar as imagens em linha */
            overflow-x: auto; /* Permite rolar horizontalmente */
            gap: 10px; /* Espaço entre as imagens */
            padding: 10px 0;
            scroll-snap-type: x mandatory; /* Para o scroll parar nas imagens */
            flex-wrap: nowrap;
            cursor: pointer;
        }

        .update-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box, 
                        linear-gradient(45deg, rgb(255, 0, 0), rgb(79, 184, 255), rgb(255, 0, 242), rgb(0, 204, 255), rgb(238, 255, 0)) border-box;
            flex-shrink: 0; /* Impede que a imagem encolha */
            scroll-snap-align: start;
        }


        /* Estilo do botão de menu (para celulares) */
        #menuButton {
            font-size: 30px;
            background: none;
            border: none;
            color: #333;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .actions {
                display: none;
            }
            .updates-container {
                display: flex;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch; /* Para rolagem suave em iOS */
            }
            .update-image {
                width: 70px;
                height: 70px;
            }
            
            #menuButton {
                display: block;
            }
            .card img {
                height: 120px;
                object-fit: cover;
            }
        }
        @media (min-width: 769px) {
            .row {
                display: flex;
            }

            #menuButton {
                display: none;
            }
        }
