/* Configurações Gerais de Tipografia */
body {
    font-family: 'Inter', sans-serif;
    color: #2d3436;
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    font-weight: 700;
    color: #1e272e;
    letter-spacing: -0.02em;
}

/* Navbar Personalizada */
.navbar {
    background-color: #1e272e !important;
    border-bottom: 2px solid #00d8d6;
    padding: 0.8rem 1rem;
}

.navbar-title {
    font-weight: 700;
    color: #ffffff !important;
}

/* Estilo dos Value Boxes (Shiny) */
.value-box {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.value-box:hover {
    transform: translateY(-5px);
}

/* Customização do Container do Simulador */
.shinylive-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

/* Ajustes de Tabelas */
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 2rem 0;
    border: 1px solid #eee;
    border-radius: 8px;
}

th {
    background-color: #f1f2f6;
    font-weight: 600;
    padding: 12px;
}

td {
    padding: 12px;
    border-top: 1px solid #eee;
}

/* Botões e Inputs */
.btn-primary {
    background-color: #05c46b;
    border-color: #05c46b;
    font-weight: 600;
}

/* Links do TOC (Sumário lateral) */
#quarto-toc-sidebar .active {
    color: #00d8d6 !important;
    border-left-color: #00d8d6 !important;
}