/* ==========================================
   ESTILO BASE GOOGLE WORKSPACE / MATERIAL
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: 'Roboto', Arial, sans-serif;
    color: #202124;
}

/* Navbar / Cabeçalho */
.navbar {
    margin: 1% 1% 0 1%;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 8px 15px;
    z-index: 1000;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.30), 0 2px 6px 2px rgba(60,64,67,0.15);
}

.navbar-brand {
    font-weight: 500;
    color: #0062aa !important;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: #0062aa !important;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Cards & Contêineres */
.tool-card, .card-visao {
    background-color: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-visao {
    border-top: 4px solid #0d6efd;
}

.card-visao:hover, .tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px 0 rgba(60,64,67,0.30);
}

/* Formulários e Inputs estilo Google */
.google-input, .form-control, .form-select {
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.google-input:focus, .form-control:focus, .form-select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
    outline: none;
}

/* Botões */
.btn-google-next, .btn-primary {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 24px;
    font-weight: 500;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-google-next:hover, .btn-primary:hover {
    background-color: #1557b0;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}

.btn-modal {
    background-color: transparent;
    color: #1a73e8;
    border-radius: 100px;
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn-modal:hover {
    background-color: rgba(26, 115, 232, 0.04);
}

/* Badges e Estatísticas */
.stat-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.2s;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: #5f6368;
}

/* Rodapé */
footer {
    text-align: right;
    padding: 20px;
    color: #0062aa;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
    font-size: 14px;
}