
 /* Estilo Base Google */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #ffffff; /* Fundo Totalmente Branco */
            font-family: 'Roboto', Arial, sans-serif;
            color: #202124; /* Cinza escuro padrão Google */
        }

        /* Navbar Estilo Google Search / Workspace */
        .navbar {
            position: auto;
                margin-left:1%;
margin-right: 1%;
margin-top: 1%;

                        background: #ffffff;
            border: 1px solid #e8eaed;
            border-radius: 8px;
            padding: 20px;
            transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            padding: 5PX 5px;
            z-index: 1000;
            
            /* Efeito de relevo suave (estilo Google Search fixo) */
            border-bottom: 1px solid #e8eaed;
            box-shadow: 0 1px 2px 0 rgba(60,64,67,0.30), 0 2px 6px 2px rgba(60,64,67,0.15);
        }

        .nav-left {
            display: flex;
            align-items: left;
            gap: 15px;
            margin-left: 25%;
        }

         .nav-center {

     display: flex;
     align-items: center;
     gap: 15px;
 }
        .logo {
            font-family: 'Google Sans', sans-serif;
            font-size: 22px;
            font-weight: 500;
            color: #5f6368;
            letter-spacing: -0.5px;
        }

        .nav-right {
            margin-right: 25%;
            display: flex;
            align-items: right;
            gap: 15px;
        }

        /* Avatar estilo conta Google */
        .user-profile {
            width: 32px;
            height: 32px;
            background-color: #1a73e8;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
        }

        /* Conteúdo Centralizado */
        .container {
            margin-top: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
        }

        /* Barra de Busca Estilo Google */
        .search-box {
            width: 20%;
            max-width: 584px;
            height: 46px;
            background: #fff;
            border: 1px solid #dfe1e5;
            border-radius: 24px;
            display: flex;
            align-items: center;
            padding: 0 15px;
            transition: box-shadow 0.2s;
            margin-bottom: 30px;
        }

        .search-box:hover {
            box-shadow: 0 1px 6px rgba(32,33,36,0.28);
            border-color: rgba(223,225,229,0);
        }

        .search-box input {
            flex: 1;
            height: 100%;
            border: none;
            outline: none;
            font-size: 16px;
            padding-left: 10px;
            color: #202124;
        }

        /* Cards de Ferramentas (Estilo Google Workspace) */
        .grid-tools {
                border: 1px solid #e8eaed;
            border-radius: 8px;
        
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-left:1%;
margin-right: 1%;
margin-top: 1%;
}

        .tool-card {

                        background: #ffffff;
            border: 1px solid #e8eaed;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
              margin-left:1%;
margin-right: 1%;
        }

        .tool-card:hover {
            /* O "Alto Relevo" que aparece no hover na Google */
            box-shadow: 0 4px 12px 0 rgba(60,64,67,0.30);
        }

        .tool-card h3 {
            font-family: 'Google Sans', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: #3c4043;
        }

        /* Botões Estilo Google */
        .btn-google {
            background-color: #f8f9fa;
            border: 1px solid #f8f9fa;
            border-radius: 4px;
            color: #3c4043;
            font-family: 'Google Sans', sans-serif;
            font-size: 14px;
            margin: 11px 4px;
            padding: 0 16px;
            line-height: 27px;
            height: 36px;
            min-width: 54px;
            text-align: center;
            cursor: pointer;
            user-select: none;
        }

        .btn-google:hover {
            box-shadow: 0 1px 1px rgba(0,0,0,0.1);
            background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
            background-color: #f8f9fa;
            border: 1px solid #c6c6c6;
            color: #202124;
        }


        /* ============================================================ */
        /* ESTRUTURA DO MODAL ESTILO GOOGLE (MATERIAL DESIGN 3)        */
        /* ============================================================ */

        /* Fundo escurecido atrás do Modal (Overlay) */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(32, 33, 36, 0.6); /* O "Scrim" clássico da Google */
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            
            /* Escondido por padrão */
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Quando o modal ganha a classe 'active' */
        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Caixa do Modal */
        .modal-card {
            background-color: #ffffff; /* Fundo Branco Puro */
            width: 100%;
            max-width: 560px; /* Largura padrão para diálogos do Workspace */
            min-height: 200px;
            border-radius: 28px; /* Bordas bem redondas exigidas no MD3 */
            padding: 24px;
            
            /* O Segredo do Alto Relevo Absoluto (Sombra Tripla Complexa) */
            box-shadow: 0 1px 3px 0 rgba(0,0,0,0.3), 
                        0 4px 8px 3px rgba(0,0,0,0.15), 
                        0 8px 12px 6px rgba(0,0,0,0.1);

            /* Efeito de surgimento sutil */
            transform: scale(0.9) translateY(10px);
            transition: transform 0.2s cubic-bezier(0.0, 0, 0.2, 1);
        }

        .modal-overlay.active .modal-card {
            transform: scale(1) translateY(0);
        }

        /* Cabeçalho do Modal */
        .modal-header h2 {
            font-family: 'Google Sans', sans-serif;
            font-size: 24px;
            font-weight: 400;
            color: #202124;
            margin-bottom: 16px;
        }

        /* Corpo do Modal */
        .modal-body p {
            font-size: 14px;
            line-height: 20px;
            color: #5f6368; /* Texto secundário cinza médio */
            margin-bottom: 24px;
        }

        /* Rodapé com botões de ação alinhados à direita */
        .modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 8px;
        }

        /* Botões internos do Modal (Text Buttons) */
        .btn-modal {
            font-family: 'Google Sans', sans-serif;
            background: none;
            border: none;
            padding: 10px 12px;
            font-size: 14px;
            font-weight: 500;
            color: #1a73e8; /* Azul padrão link Google */
            border-radius: 100px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-modal:hover {
            background-color: rgba(26, 115, 232, 0.04); /* Feedback sutil de clique */
        }

        .btn-modal.btn-primary {
            background-color: transparent;
        }

          .card-visao { border: none; border-top: 4px solid #0d6efd; transition: 0.3s; }
        .card-visao:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important; }
        .stat-link { text-decoration: none; color: inherit; display: block; }
        .stat-box { background: #f8f9fa; border-radius: 8px; padding: 10px; text-align: center; border: 1px solid #eee; transition: 0.2s; }
        .stat-link:hover .stat-box { background: #fff; border-color: #0d6efd; }
        .stat-value { font-size: 1.2rem; font-weight: bold; display: block; }
        .stat-label { font-size: 0.7rem; font-weight: bold; color: #6c757d; }
    
/* Paginação */
.pagination {
    margin-top: 20px;
  text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
}

.pagination .page-link {
    color: #0062aa;
        border: 0.75px solid rgba(0, 0, 0, 0.25);
        text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
    }

.pagination .page-item.active .page-link {
    background-color:rgb(245, 245, 245);
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);

}


        