/* --- COMPONENTE: NAVBAR --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-card);
    border-right: 1px solid var(--border-color);
    position: fixed;
    height: 100vh;
    padding: 24px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.logo-area {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.nav-section {
    margin-bottom: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

/* Estilização da scrollbar */
.nav-section::-webkit-scrollbar {
    width: 6px;
}

.nav-section::-webkit-scrollbar-track {
    background: transparent;
}

.nav-section::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.nav-section::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-item:hover {
    background-color: #f4f4f4;
    color: var(--brand-black);
}

.nav-item.active {
    background-color: var(--brand-primary);
    color: var(--brand-black);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 222, 0, 0.3);
}

.nav-item i {
    width: 24px;
    margin-right: 12px;
    text-align: center;
}

/* --- COMPONENTE: ACTION CARD --- */
.action-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 24px;
}

.card-header {
    background-color: var(--color-warning-bg);
    padding: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-header.info {
    background-color: #E3F2FD;
}

.card-header.success {
    background-color: #E8F5E9;
}

.header-icon {
    font-size: 1.5rem;
    color: var(--brand-primary); /* Changed to brand yellow */
}

.header-icon.info {
    color: #1976D2;
}

.header-icon.success {
    color: #388E3C;
}

.header-text h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 2px;
}

.header-text p {
    font-size: 0.9rem;
    color: var(--text-secondary); /* Reverted to secondary text color */
    font-weight: 400; /* Reduced font-weight for minimalist look */
}

.card-body {
    padding: 32px;
}

.description-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 800px;
}

/* Imagem Ilustrativa */
.illustration-image {
    width: 100%;
    max-width: 600px;
    margin-top: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

/* Lista de Passos */
.steps-list {
    background-color: #FAFAFA;
    border-radius: 8px;
    padding: 24px;
    border-left: 4px solid var(--brand-primary);
}

.step-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    background-color: var(--brand-black);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.external-link {
    color: var(--brand-black);
    text-decoration: underline;
    text-decoration-color: var(--brand-primary);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
}

.external-link:hover {
    background-color: var(--brand-primary);
    text-decoration: none;
    padding: 0 4px;
    margin-left: -4px;
    border-radius: 4px;
}

.image-download-section {
    margin-top: 32px;
}

.image-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 800px; /* Increased max-width to accommodate button */
}

.illustration-image {
    width: 100%;
    max-width: 600px;
    margin-top: 0;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    box-shadow: none;
    transition: all 0.2s ease;
    flex-shrink: 0; /* Prevent button from shrinking */
}

.download-button:hover {
    color: var(--brand-black);
    background-color: #f0f0f0;
    box-shadow: none;
}

.download-button i {
    font-size: 1em;
}


